/*
* ___ We should only use a mixin if an argument is used ___
* Using a mixin is the equivalent of copying and pasting code!
*/
.pulse {
  animation-name: inline-ugppr1g;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes inline-ugppr1g {
  from {
    background-color: yellow;
  }
  to {
    background-color: red;
  }
}

@keyframes randomMoveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  15% {
    transform: translate(0.3em, -0.2em) scale(0.5);
  }
  30% {
    transform: translate(0.4em, 0.1em) scale(0.45);
  }
  45% {
    transform: translate(0.25em, 0.2em) scale(0.45);
  }
  60% {
    transform: translate(-0.3em, 0) scale(0.4);
  }
  85% {
    transform: translate(-0.1em, -0.25em) scale(0.5);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes squareMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1em, 0);
    /* Move right */
  }
  50% {
    transform: translate(1em, 1em);
    /* Move down */
  }
  75% {
    transform: translate(0, 1em);
    /* Move left */
  }
  100% {
    transform: translate(0, 0);
    /* Move up to the start */
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(0.45);
  }
  45% {
    transform: scale(0.45);
  }
  60% {
    transform: scale(0.4);
  }
  85% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tiltAround {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(7deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  85% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shakeAside {
  0% {
    transform: translateX(0);
    /* Start at original position */
  }
  15% {
    transform: translateX(-0.1em);
    /* Move left */
  }
  30% {
    transform: translateX(0.1em);
    /* Move right */
  }
  45% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  60% {
    transform: translateX(0.25em);
    /* Move left*/
  }
  75% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  100% {
    transform: translateX(0);
    /* Return to original position */
  }
}
@keyframes shakeAside-TiltAround {
  0% {
    transform: translateX(0) rotate(0deg);
    /* Start at original position */
  }
  25% {
    transform: translateX(-0.1em) rotate(-5deg);
    /* Move left and tilt left */
  }
  50% {
    transform: translateX(0.1em) rotate(5deg);
    /* Move right and tilt right */
  }
  75% {
    transform: translateX(-0.25em) rotate(-5deg);
    /* Move left and tilt left */
  }
  100% {
    transform: translateX(0) rotate(0deg);
    /* Return to original position */
  }
}
@keyframes shakeAside-tiltAround-zoomInOut {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
  15% {
    transform: translateX(-0.1em) rotate(5deg) scale(0.5);
  }
  30% {
    transform: translateX(0.1em) rotate(-5deg) scale(0.45);
  }
  45% {
    transform: translateX(-0.25em) rotate(7deg) scale(0.45);
  }
  60% {
    transform: translateX(0.25em) rotate(-7deg) scale(0.4);
  }
  85% {
    transform: translateX(-0.25em) rotate(10deg) scale(0.5);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes tiltAround-zoomInOut {
  0% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(5deg) scale(0.5);
  }
  30% {
    transform: rotate(-5deg) scale(0.45);
  }
  45% {
    transform: rotate(7deg) scale(0.45);
  }
  60% {
    transform: rotate(-7deg) scale(0.4);
  }
  85% {
    transform: rotate(10deg) scale(0.5);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes fadeInOut {
  from {
    opacity: 0.05;
  }
  to {
    opacity: 0.75;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody], #Settings .wrap .body {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-top: 3em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody]::before, #Settings .wrap .body::before {
  content: "\f085";
  position: sticky;
  top: 50%;
  text-align: center;
  font-family: FontAwesome;
  font-size: 17em;
  opacity: 0.1;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > *, #Settings .wrap .body > * {
  position: relative;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > ul, #Settings .wrap .body > ul {
  margin: 1em 0;
  text-align: start;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > ul .lvl1, #Settings .wrap .body > ul .lvl1 {
  background: none repeat scroll 0 0;
  font-size: 17px;
  font-style: italic;
  padding: 0.25em 1em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > ul .lvl1:not(:first-child), #Settings .wrap .body > ul .lvl1:not(:first-child) {
  margin: 1em 0 0;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > ul .lvl1, html[data-colorScheme=dark] #Settings .wrap .body > ul .lvl1, #Settings .wrap html[data-colorScheme=dark] .body > ul .lvl1 {
  background-color: #666;
  color: #bbb;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > ul .lvl1, html[data-colorScheme=light] #Settings .wrap .body > ul .lvl1, #Settings .wrap html[data-colorScheme=light] .body > ul .lvl1 {
  background-color: #ccc;
  color: #777;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > ul .lvl2, #Settings .wrap .body > ul .lvl2 {
  margin: 0.25em 1em;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > ul .lvl2:hover, #Settings .wrap .body > ul .lvl2:hover {
  border-left: 0.25em solid transparent;
  border-right: 0.25em solid transparent;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > ul .lvl2 > a, #Settings .wrap .body > ul .lvl2 > a {
  padding: 0 1em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > ul .lvl2 > a, html[data-colorScheme=dark] #Settings .wrap .body > ul .lvl2 > a, #Settings .wrap html[data-colorScheme=dark] .body > ul .lvl2 > a {
  color: #007bfc;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > ul .lvl2 > a, html[data-colorScheme=light] #Settings .wrap .body > ul .lvl2 > a, #Settings .wrap html[data-colorScheme=light] .body > ul .lvl2 > a {
  color: #007bfc;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] > ul .lvl2 > a:hover, #Settings .wrap .body > ul .lvl2 > a:hover {
  text-decoration: underline;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox, #Settings .wrap .body .infoBox {
  margin: 1em 0;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.accountOptions, #Settings .wrap .body .infoBox.accountOptions {
  margin: 1em 0;
  display: flex;
  justify-content: center;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.accountOptions .signin, #Settings .wrap .body .infoBox.accountOptions .signin {
  padding: 1em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.langsBox select:hover, #Settings .wrap .body .infoBox.langsBox select:hover {
  cursor: pointer;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.colorScheme, #Settings .wrap .body .infoBox.colorScheme {
  display: flex;
  justify-content: center;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.colorScheme .option, #Settings .wrap .body .infoBox.colorScheme .option {
  padding-inline-start: 1em;
  cursor: pointer;
  white-space: nowrap;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.colorScheme .option.dark .fa, html[data-colorScheme=dark] #Settings .wrap .body .infoBox.colorScheme .option.dark .fa, #Settings .wrap html[data-colorScheme=dark] .body .infoBox.colorScheme .option.dark .fa {
  color: #c4532d;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.colorScheme .option.light .fa, html[data-colorScheme=light] #Settings .wrap .body .infoBox.colorScheme .option.light .fa, #Settings .wrap html[data-colorScheme=light] .body .infoBox.colorScheme .option.light .fa {
  color: #fc9775;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.siteLinks, #Settings .wrap .body .infoBox.siteLinks {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.siteLinks > a, #Settings .wrap .body .infoBox.siteLinks > a {
  display: block;
  line-height: 1.75em;
  white-space: nowrap;
  cursor: pointer;
  padding: 0 1em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.siteLinks > a, html[data-colorScheme=dark] #Settings .wrap .body .infoBox.siteLinks > a, #Settings .wrap html[data-colorScheme=dark] .body .infoBox.siteLinks > a {
  color: #009de2;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.siteLinks > a, html[data-colorScheme=light] #Settings .wrap .body .infoBox.siteLinks > a, #Settings .wrap html[data-colorScheme=light] .body .infoBox.siteLinks > a {
  color: #009de2;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .infoBox.siteLinks > a:hover, #Settings .wrap .body .infoBox.siteLinks > a:hover {
  text-decoration: underline;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .logoBox, #Settings .wrap .body .logoBox {
  margin: 1em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .logoBox img, #Settings .wrap .body .logoBox img {
  display: block;
  width: 7em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .logoBox span, html[data-colorScheme=dark] #Settings .wrap .body .logoBox span, #Settings .wrap html[data-colorScheme=dark] .body .logoBox span {
  color: #bbb;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] .logoBox span, html[data-colorScheme=light] #Settings .wrap .body .logoBox span, #Settings .wrap html[data-colorScheme=light] .body .logoBox span {
  color: #777;
}

/*
* ___ We should only use a mixin if an argument is used ___
* Using a mixin is the equivalent of copying and pasting code!
*/
.pulse {
  animation-name: inline-ugppr1t;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes inline-ugppr1t {
  from {
    background-color: yellow;
  }
  to {
    background-color: red;
  }
}

@keyframes randomMoveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  15% {
    transform: translate(0.3em, -0.2em) scale(0.5);
  }
  30% {
    transform: translate(0.4em, 0.1em) scale(0.45);
  }
  45% {
    transform: translate(0.25em, 0.2em) scale(0.45);
  }
  60% {
    transform: translate(-0.3em, 0) scale(0.4);
  }
  85% {
    transform: translate(-0.1em, -0.25em) scale(0.5);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes squareMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1em, 0);
    /* Move right */
  }
  50% {
    transform: translate(1em, 1em);
    /* Move down */
  }
  75% {
    transform: translate(0, 1em);
    /* Move left */
  }
  100% {
    transform: translate(0, 0);
    /* Move up to the start */
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(0.45);
  }
  45% {
    transform: scale(0.45);
  }
  60% {
    transform: scale(0.4);
  }
  85% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tiltAround {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(7deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  85% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shakeAside {
  0% {
    transform: translateX(0);
    /* Start at original position */
  }
  15% {
    transform: translateX(-0.1em);
    /* Move left */
  }
  30% {
    transform: translateX(0.1em);
    /* Move right */
  }
  45% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  60% {
    transform: translateX(0.25em);
    /* Move left*/
  }
  75% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  100% {
    transform: translateX(0);
    /* Return to original position */
  }
}
@keyframes shakeAside-TiltAround {
  0% {
    transform: translateX(0) rotate(0deg);
    /* Start at original position */
  }
  25% {
    transform: translateX(-0.1em) rotate(-5deg);
    /* Move left and tilt left */
  }
  50% {
    transform: translateX(0.1em) rotate(5deg);
    /* Move right and tilt right */
  }
  75% {
    transform: translateX(-0.25em) rotate(-5deg);
    /* Move left and tilt left */
  }
  100% {
    transform: translateX(0) rotate(0deg);
    /* Return to original position */
  }
}
@keyframes shakeAside-tiltAround-zoomInOut {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
  15% {
    transform: translateX(-0.1em) rotate(5deg) scale(0.5);
  }
  30% {
    transform: translateX(0.1em) rotate(-5deg) scale(0.45);
  }
  45% {
    transform: translateX(-0.25em) rotate(7deg) scale(0.45);
  }
  60% {
    transform: translateX(0.25em) rotate(-7deg) scale(0.4);
  }
  85% {
    transform: translateX(-0.25em) rotate(10deg) scale(0.5);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes tiltAround-zoomInOut {
  0% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(5deg) scale(0.5);
  }
  30% {
    transform: rotate(-5deg) scale(0.45);
  }
  45% {
    transform: rotate(7deg) scale(0.45);
  }
  60% {
    transform: rotate(-7deg) scale(0.4);
  }
  85% {
    transform: rotate(10deg) scale(0.5);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes fadeInOut {
  from {
    opacity: 0.05;
  }
  to {
    opacity: 0.75;
  }
}
/*
* ___ We should only use a mixin if an argument is used ___
* Using a mixin is the equivalent of copying and pasting code!
*/
.pulse {
  animation-name: inline-ugppr2d;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes inline-ugppr2d {
  from {
    background-color: yellow;
  }
  to {
    background-color: red;
  }
}
@keyframes randomMoveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  15% {
    transform: translate(0.3em, -0.2em) scale(0.5);
  }
  30% {
    transform: translate(0.4em, 0.1em) scale(0.45);
  }
  45% {
    transform: translate(0.25em, 0.2em) scale(0.45);
  }
  60% {
    transform: translate(-0.3em, 0) scale(0.4);
  }
  85% {
    transform: translate(-0.1em, -0.25em) scale(0.5);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes squareMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1em, 0);
    /* Move right */
  }
  50% {
    transform: translate(1em, 1em);
    /* Move down */
  }
  75% {
    transform: translate(0, 1em);
    /* Move left */
  }
  100% {
    transform: translate(0, 0);
    /* Move up to the start */
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(0.45);
  }
  45% {
    transform: scale(0.45);
  }
  60% {
    transform: scale(0.4);
  }
  85% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tiltAround {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(7deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  85% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shakeAside {
  0% {
    transform: translateX(0);
    /* Start at original position */
  }
  15% {
    transform: translateX(-0.1em);
    /* Move left */
  }
  30% {
    transform: translateX(0.1em);
    /* Move right */
  }
  45% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  60% {
    transform: translateX(0.25em);
    /* Move left*/
  }
  75% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  100% {
    transform: translateX(0);
    /* Return to original position */
  }
}
@keyframes shakeAside-TiltAround {
  0% {
    transform: translateX(0) rotate(0deg);
    /* Start at original position */
  }
  25% {
    transform: translateX(-0.1em) rotate(-5deg);
    /* Move left and tilt left */
  }
  50% {
    transform: translateX(0.1em) rotate(5deg);
    /* Move right and tilt right */
  }
  75% {
    transform: translateX(-0.25em) rotate(-5deg);
    /* Move left and tilt left */
  }
  100% {
    transform: translateX(0) rotate(0deg);
    /* Return to original position */
  }
}
@keyframes shakeAside-tiltAround-zoomInOut {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
  15% {
    transform: translateX(-0.1em) rotate(5deg) scale(0.5);
  }
  30% {
    transform: translateX(0.1em) rotate(-5deg) scale(0.45);
  }
  45% {
    transform: translateX(-0.25em) rotate(7deg) scale(0.45);
  }
  60% {
    transform: translateX(0.25em) rotate(-7deg) scale(0.4);
  }
  85% {
    transform: translateX(-0.25em) rotate(10deg) scale(0.5);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes tiltAround-zoomInOut {
  0% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(5deg) scale(0.5);
  }
  30% {
    transform: rotate(-5deg) scale(0.45);
  }
  45% {
    transform: rotate(7deg) scale(0.45);
  }
  60% {
    transform: rotate(-7deg) scale(0.4);
  }
  85% {
    transform: rotate(10deg) scale(0.5);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes fadeInOut {
  from {
    opacity: 0.05;
  }
  to {
    opacity: 0.75;
  }
}
/*
* ___ We should only use a mixin if an argument is used ___
* Using a mixin is the equivalent of copying and pasting code!
*/
.pulse {
  animation-name: inline-ugppr2h;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes inline-ugppr2h {
  from {
    background-color: yellow;
  }
  to {
    background-color: red;
  }
}

@keyframes randomMoveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  15% {
    transform: translate(0.3em, -0.2em) scale(0.5);
  }
  30% {
    transform: translate(0.4em, 0.1em) scale(0.45);
  }
  45% {
    transform: translate(0.25em, 0.2em) scale(0.45);
  }
  60% {
    transform: translate(-0.3em, 0) scale(0.4);
  }
  85% {
    transform: translate(-0.1em, -0.25em) scale(0.5);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes squareMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1em, 0);
    /* Move right */
  }
  50% {
    transform: translate(1em, 1em);
    /* Move down */
  }
  75% {
    transform: translate(0, 1em);
    /* Move left */
  }
  100% {
    transform: translate(0, 0);
    /* Move up to the start */
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(0.45);
  }
  45% {
    transform: scale(0.45);
  }
  60% {
    transform: scale(0.4);
  }
  85% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tiltAround {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(7deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  85% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shakeAside {
  0% {
    transform: translateX(0);
    /* Start at original position */
  }
  15% {
    transform: translateX(-0.1em);
    /* Move left */
  }
  30% {
    transform: translateX(0.1em);
    /* Move right */
  }
  45% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  60% {
    transform: translateX(0.25em);
    /* Move left*/
  }
  75% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  100% {
    transform: translateX(0);
    /* Return to original position */
  }
}
@keyframes shakeAside-TiltAround {
  0% {
    transform: translateX(0) rotate(0deg);
    /* Start at original position */
  }
  25% {
    transform: translateX(-0.1em) rotate(-5deg);
    /* Move left and tilt left */
  }
  50% {
    transform: translateX(0.1em) rotate(5deg);
    /* Move right and tilt right */
  }
  75% {
    transform: translateX(-0.25em) rotate(-5deg);
    /* Move left and tilt left */
  }
  100% {
    transform: translateX(0) rotate(0deg);
    /* Return to original position */
  }
}
@keyframes shakeAside-tiltAround-zoomInOut {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
  15% {
    transform: translateX(-0.1em) rotate(5deg) scale(0.5);
  }
  30% {
    transform: translateX(0.1em) rotate(-5deg) scale(0.45);
  }
  45% {
    transform: translateX(-0.25em) rotate(7deg) scale(0.45);
  }
  60% {
    transform: translateX(0.25em) rotate(-7deg) scale(0.4);
  }
  85% {
    transform: translateX(-0.25em) rotate(10deg) scale(0.5);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes tiltAround-zoomInOut {
  0% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(5deg) scale(0.5);
  }
  30% {
    transform: rotate(-5deg) scale(0.45);
  }
  45% {
    transform: rotate(7deg) scale(0.45);
  }
  60% {
    transform: rotate(-7deg) scale(0.4);
  }
  85% {
    transform: rotate(10deg) scale(0.5);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes fadeInOut {
  from {
    opacity: 0.05;
  }
  to {
    opacity: 0.75;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  width: 0.3em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont .red {
  background-color: #911435;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont .green {
  background-color: #1b8748;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont {
  background-color: rgba(37, 211, 102, 0.1);
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont {
  background-color: rgba(37, 211, 102, 0.3);
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date {
  color: #25d366;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date {
  color: #1b8748;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont {
  background-color: rgba(234, 0, 56, 0.1);
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont {
  background-color: rgba(234, 0, 56, 0.3);
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date {
  color: #f15c6d;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date {
  color: #ea0038;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa {
  color: #aaa;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa {
  color: #555;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .text {
  display: none;
  font-size: 0.8em;
}
@media only screen and (min-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .text {
    display: inline;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .date {
  font-size: 0.9em;
  white-space: nowrap;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont {
  font-family: sans-serif;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div {
  flex-grow: 1;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num {
  padding: 0.25em 28%;
  border-radius: 0.2em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num {
  background-color: #444;
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num {
  background-color: #ccc;
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text {
  font-size: 0.9em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text {
  color: #bbb;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text {
  color: #777;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small {
  display: block;
}
@media only screen and (min-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small {
    display: none;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large {
  display: none;
}
@media only screen and (min-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large {
    display: block;
  }
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .jobtype {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-weight: bolder;
  font-style: oblique;
  font-variant: petite-caps;
  background: #156038;
  color: #d9fdd3;
  border-radius: 0.2em;
  padding: 0.25em 0.5em;
  bottom: 2em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .jobtype {
  left: 0.5em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .jobtype {
  right: 0.5em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_model {
  position: absolute;
  pointer-events: none;
  user-select: none;
  background: #156038;
  color: #d9fdd3;
  border-radius: 0.2em;
  padding: 0.25em 0.5em;
  bottom: 2em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_model {
  right: 0.5em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_model {
  left: 0.5em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_condition {
  position: absolute;
  pointer-events: none;
  user-select: none;
  background: #156038;
  color: #d9fdd3;
  border-radius: 0.2em;
  padding: 0.25em 0.5em;
  top: 0.5em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_condition {
  left: 0.5em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_condition {
  right: 0.5em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont {
  height: auto;
  white-space: initial;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money {
  margin: 0 0.1em 0 0;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money {
  color: #aaa;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money {
  color: #555;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .wage {
  font-size: 1.25em;
  color: #1b8748;
  font-weight: 700;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency {
  font-size: 0.7em;
  margin: 0 0 0 0.1em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency {
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency {
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .on_sale {
  font-family: sans-serif;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale {
  color: #f15c6d;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale {
  color: #ea0038;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off {
  color: #ddd;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save {
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off {
  color: #444;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save {
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost {
  margin: 0.4em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost {
  color: #f15c6d;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost {
  color: #f15c6d;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost {
  color: #ea0038;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost {
  color: #ea0038;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period {
  text-transform: uppercase;
  font-variant: all-petite-caps;
  font-style: oblique;
  font-size: 0.9em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period {
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period {
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont {
  margin-top: 0.5em;
}

/*
* ___ We should only use a mixin if an argument is used ___
* Using a mixin is the equivalent of copying and pasting code!
*/
.pulse {
  animation-name: inline-ugppr2w;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes inline-ugppr2w {
  from {
    background-color: yellow;
  }
  to {
    background-color: red;
  }
}

@keyframes randomMoveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  15% {
    transform: translate(0.3em, -0.2em) scale(0.5);
  }
  30% {
    transform: translate(0.4em, 0.1em) scale(0.45);
  }
  45% {
    transform: translate(0.25em, 0.2em) scale(0.45);
  }
  60% {
    transform: translate(-0.3em, 0) scale(0.4);
  }
  85% {
    transform: translate(-0.1em, -0.25em) scale(0.5);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes squareMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1em, 0);
    /* Move right */
  }
  50% {
    transform: translate(1em, 1em);
    /* Move down */
  }
  75% {
    transform: translate(0, 1em);
    /* Move left */
  }
  100% {
    transform: translate(0, 0);
    /* Move up to the start */
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(0.45);
  }
  45% {
    transform: scale(0.45);
  }
  60% {
    transform: scale(0.4);
  }
  85% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tiltAround {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(7deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  85% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shakeAside {
  0% {
    transform: translateX(0);
    /* Start at original position */
  }
  15% {
    transform: translateX(-0.1em);
    /* Move left */
  }
  30% {
    transform: translateX(0.1em);
    /* Move right */
  }
  45% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  60% {
    transform: translateX(0.25em);
    /* Move left*/
  }
  75% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  100% {
    transform: translateX(0);
    /* Return to original position */
  }
}
@keyframes shakeAside-TiltAround {
  0% {
    transform: translateX(0) rotate(0deg);
    /* Start at original position */
  }
  25% {
    transform: translateX(-0.1em) rotate(-5deg);
    /* Move left and tilt left */
  }
  50% {
    transform: translateX(0.1em) rotate(5deg);
    /* Move right and tilt right */
  }
  75% {
    transform: translateX(-0.25em) rotate(-5deg);
    /* Move left and tilt left */
  }
  100% {
    transform: translateX(0) rotate(0deg);
    /* Return to original position */
  }
}
@keyframes shakeAside-tiltAround-zoomInOut {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
  15% {
    transform: translateX(-0.1em) rotate(5deg) scale(0.5);
  }
  30% {
    transform: translateX(0.1em) rotate(-5deg) scale(0.45);
  }
  45% {
    transform: translateX(-0.25em) rotate(7deg) scale(0.45);
  }
  60% {
    transform: translateX(0.25em) rotate(-7deg) scale(0.4);
  }
  85% {
    transform: translateX(-0.25em) rotate(10deg) scale(0.5);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes tiltAround-zoomInOut {
  0% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(5deg) scale(0.5);
  }
  30% {
    transform: rotate(-5deg) scale(0.45);
  }
  45% {
    transform: rotate(7deg) scale(0.45);
  }
  60% {
    transform: rotate(-7deg) scale(0.4);
  }
  85% {
    transform: rotate(10deg) scale(0.5);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes fadeInOut {
  from {
    opacity: 0.05;
  }
  to {
    opacity: 0.75;
  }
}
#mainpage > .hdr .pnl2 {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  text-align: center;
}
html[data-colorScheme=dark] #mainpage > .hdr .pnl2, #mainpage > .hdr html[data-colorScheme=dark] .pnl2 {
  background-color: #444;
  color: #bbb;
}

html[data-colorScheme=light] #mainpage > .hdr .pnl2, #mainpage > .hdr html[data-colorScheme=light] .pnl2 {
  background-color: #eee;
  color: #444;
}

#mainpage > .hdr .pnl2 .pg_type_cont {
  transition: border-color ease-in-out 0.5s, color ease-in-out 0.25s;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 0.2em solid transparent;
  flex: 1 1 0px;
  border-radius: 0.2em;
  padding: 0.25em 0;
}
html[data-colorScheme=dark] #mainpage > .hdr .pnl2 .pg_type_cont:hover, #mainpage > .hdr html[data-colorScheme=dark] .pnl2 .pg_type_cont:hover {
  border-color: #bbb;
  color: #fff;
}

html[data-colorScheme=light] #mainpage > .hdr .pnl2 .pg_type_cont:hover, #mainpage > .hdr html[data-colorScheme=light] .pnl2 .pg_type_cont:hover {
  border-color: #777;
  color: #222;
}

html[data-colorScheme=dark] #mainpage > .hdr .pnl2 .pg_type_cont.active, #mainpage > .hdr html[data-colorScheme=dark] .pnl2 .pg_type_cont.active {
  border-color: #fa6533;
}

html[data-colorScheme=light] #mainpage > .hdr .pnl2 .pg_type_cont.active, #mainpage > .hdr html[data-colorScheme=light] .pnl2 .pg_type_cont.active {
  border-color: #fa6533;
}

#mainpage > .hdr .pnl2 .pg_type_cont > .fa {
  padding: 0.5em 0 0.25em;
}
html[data-colorScheme=dark] #mainpage > .hdr .pnl2 .pg_type_cont > .fa, #mainpage > .hdr html[data-colorScheme=dark] .pnl2 .pg_type_cont > .fa {
  text-shadow: 0 0.05em 0.1em #222;
}

html[data-colorScheme=light] #mainpage > .hdr .pnl2 .pg_type_cont > .fa, #mainpage > .hdr html[data-colorScheme=light] .pnl2 .pg_type_cont > .fa {
  text-shadow: 0 0.05em 0.1em #fff;
}

#mainpage > .hdr .pnl2 .pg_type_cont > .fa:hover {
  color: inherit;
}
#mainpage > .hdr .pnl2 .txt {
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 576px) {
  #mainpage > .hdr .pnl2 .txt {
    display: block;
  }
}
@media only screen and (max-width: 320px) {
  #mainpage > .hdr .pnl2 .txt {
    display: none;
  }
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, color 0.15s ease-in-out;
  border: thin solid transparent;
  padding: 0.1em 0.5em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem {
  background-color: #293136;
  color: #046692;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem {
  background-color: #def3fc;
  color: #027eb5;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover {
  background-color: #21343c;
  color: #027eb5;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover {
  background-color: #caecfa;
  color: #046692;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover {
  text-decoration: none;
}

/*
* ___ We should only use a mixin if an argument is used ___
* Using a mixin is the equivalent of copying and pasting code!
*/
.pulse {
  animation-name: inline-ugppr3b;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes inline-ugppr3b {
  from {
    background-color: yellow;
  }
  to {
    background-color: red;
  }
}

@keyframes randomMoveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  15% {
    transform: translate(0.3em, -0.2em) scale(0.5);
  }
  30% {
    transform: translate(0.4em, 0.1em) scale(0.45);
  }
  45% {
    transform: translate(0.25em, 0.2em) scale(0.45);
  }
  60% {
    transform: translate(-0.3em, 0) scale(0.4);
  }
  85% {
    transform: translate(-0.1em, -0.25em) scale(0.5);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes squareMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1em, 0);
    /* Move right */
  }
  50% {
    transform: translate(1em, 1em);
    /* Move down */
  }
  75% {
    transform: translate(0, 1em);
    /* Move left */
  }
  100% {
    transform: translate(0, 0);
    /* Move up to the start */
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(0.45);
  }
  45% {
    transform: scale(0.45);
  }
  60% {
    transform: scale(0.4);
  }
  85% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tiltAround {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(7deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  85% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shakeAside {
  0% {
    transform: translateX(0);
    /* Start at original position */
  }
  15% {
    transform: translateX(-0.1em);
    /* Move left */
  }
  30% {
    transform: translateX(0.1em);
    /* Move right */
  }
  45% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  60% {
    transform: translateX(0.25em);
    /* Move left*/
  }
  75% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  100% {
    transform: translateX(0);
    /* Return to original position */
  }
}
@keyframes shakeAside-TiltAround {
  0% {
    transform: translateX(0) rotate(0deg);
    /* Start at original position */
  }
  25% {
    transform: translateX(-0.1em) rotate(-5deg);
    /* Move left and tilt left */
  }
  50% {
    transform: translateX(0.1em) rotate(5deg);
    /* Move right and tilt right */
  }
  75% {
    transform: translateX(-0.25em) rotate(-5deg);
    /* Move left and tilt left */
  }
  100% {
    transform: translateX(0) rotate(0deg);
    /* Return to original position */
  }
}
@keyframes shakeAside-tiltAround-zoomInOut {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
  15% {
    transform: translateX(-0.1em) rotate(5deg) scale(0.5);
  }
  30% {
    transform: translateX(0.1em) rotate(-5deg) scale(0.45);
  }
  45% {
    transform: translateX(-0.25em) rotate(7deg) scale(0.45);
  }
  60% {
    transform: translateX(0.25em) rotate(-7deg) scale(0.4);
  }
  85% {
    transform: translateX(-0.25em) rotate(10deg) scale(0.5);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes tiltAround-zoomInOut {
  0% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(5deg) scale(0.5);
  }
  30% {
    transform: rotate(-5deg) scale(0.45);
  }
  45% {
    transform: rotate(7deg) scale(0.45);
  }
  60% {
    transform: rotate(-7deg) scale(0.4);
  }
  85% {
    transform: rotate(10deg) scale(0.5);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes fadeInOut {
  from {
    opacity: 0.05;
  }
  to {
    opacity: 0.75;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  width: 0.3em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont .red {
  background-color: #911435;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont .green {
  background-color: #1b8748;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont {
  background-color: rgba(37, 211, 102, 0.1);
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont {
  background-color: rgba(37, 211, 102, 0.3);
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date {
  color: #25d366;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date {
  color: #1b8748;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont {
  background-color: rgba(234, 0, 56, 0.1);
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont {
  background-color: rgba(234, 0, 56, 0.3);
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date {
  color: #f15c6d;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date {
  color: #ea0038;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa {
  color: #aaa;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa {
  color: #555;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .text {
  display: none;
  font-size: 0.8em;
}
@media only screen and (min-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .text {
    display: inline;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .date {
  font-size: 0.9em;
  white-space: nowrap;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont {
  font-family: sans-serif;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div {
  flex-grow: 1;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num {
  padding: 0.25em 28%;
  border-radius: 0.2em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num {
  background-color: #444;
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num {
  background-color: #ccc;
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text {
  font-size: 0.9em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text {
  color: #bbb;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text {
  color: #777;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small {
  display: block;
}
@media only screen and (min-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small {
    display: none;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large {
  display: none;
}
@media only screen and (min-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large {
    display: block;
  }
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .jobtype {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-weight: bolder;
  font-style: oblique;
  font-variant: petite-caps;
  background: #156038;
  color: #d9fdd3;
  border-radius: 0.2em;
  padding: 0.25em 0.5em;
  bottom: 2em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .jobtype {
  left: 0.5em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .jobtype {
  right: 0.5em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_model {
  position: absolute;
  pointer-events: none;
  user-select: none;
  background: #156038;
  color: #d9fdd3;
  border-radius: 0.2em;
  padding: 0.25em 0.5em;
  bottom: 2em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_model {
  right: 0.5em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_model {
  left: 0.5em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_condition {
  position: absolute;
  pointer-events: none;
  user-select: none;
  background: #156038;
  color: #d9fdd3;
  border-radius: 0.2em;
  padding: 0.25em 0.5em;
  top: 0.5em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_condition {
  left: 0.5em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_condition {
  right: 0.5em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont {
  height: auto;
  white-space: initial;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money {
  margin: 0 0.1em 0 0;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money {
  color: #aaa;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money {
  color: #555;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .wage {
  font-size: 1.25em;
  color: #1b8748;
  font-weight: 700;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency {
  font-size: 0.7em;
  margin: 0 0 0 0.1em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency {
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency {
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .on_sale {
  font-family: sans-serif;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale {
  color: #f15c6d;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale {
  color: #ea0038;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off {
  color: #ddd;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save {
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off {
  color: #444;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save {
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost {
  margin: 0.4em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost {
  color: #f15c6d;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost {
  color: #f15c6d;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost {
  color: #ea0038;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost {
  color: #ea0038;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period {
  text-transform: uppercase;
  font-variant: all-petite-caps;
  font-style: oblique;
  font-size: 0.9em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period {
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period {
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont {
  margin-top: 0.5em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] {
  transition: box-shadow 0.25s ease-in-out;
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: 0.75em 0.75em 0 0;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard], html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] {
  background-color: rgba(51, 51, 51, 0.5215686275);
  border-bottom: thin solid #444;
  box-shadow: 0 0.05em 0.25em #888;
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard], html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] {
  background-color: rgba(238, 238, 238, 0.5215686275);
  border-bottom: thin solid #eee;
  box-shadow: 0 0.05em 0.25em #ccc;
  color: #444;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard]:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard]:hover {
  box-shadow: 0 0.25em 0.75em #888;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard]:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard]:hover {
  box-shadow: 0 0.25em 0.75em #ccc;
}

@media only screen and (min-width: 768px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] {
    max-width: 30em;
    width: 47%;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > div {
  /*
  @at-root %activitycard > .top_cont > div {
  	@include media(medium, min) {
  		vertical-align: middle;
  		display: inline-block;
  		width: 33.3%;
  	}
  }
  */
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  column-gap: 0.5em;
  padding: 0.5em 0.5em 0;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .lft_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .lft_cont {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .lft_cont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .lft_cont .date {
  font-size: 0.8em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .lft_cont .date {
  color: #bbb;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .lft_cont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .lft_cont .date {
  color: #777;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .lft_cont .resolution, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .lft_cont .resolution {
  font-size: 28px;
  color: #1fa855;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont {
  text-align: start;
  flex-grow: 1;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a {
  color: #009de2;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .sub_cont a {
  color: #009de2;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a {
  color: #009de2;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .obj_cont a {
  color: #009de2;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget].small {
  display: inline-block;
  text-align: center;
  border: none;
  margin: 0 0.5em -0.4em;
  height: 1.5em;
  width: 1.5em;
  border-radius: 0.2em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-building {
  font-size: 1.25em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-qrcode {
  font-size: 1.5em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-puzzle-piece {
  font-size: 1.5em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-briefcase {
  font-size: 1.5em;
  padding: 0.05em 0;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-male {
  font-size: 1.25em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-female {
  font-size: 1.25em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .lft_col > .rit_cont .obj_cont .component[data-component=LogoWidget] .fa-user {
  font-size: 1.5em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col {
  position: relative;
  width: 100%;
  /*
  @at-root %activitycard > .top_cont > .mid_col {
  	.component[data-component=LogoWidget] {
  		&.large {
  			.fa-qrcode {
  				font-size: 14em;
  			}

  			.fa-puzzle-piece {
  				font-size: 12em;
  				padding: .05em 0 0;
  			}

  			.fa-briefcase {
  				font-size: 13em;
  				padding: .075em 0 0;
  			}

  			.fa-male {
  				font-size: 11em;
  				padding: .05em 0;
  			}

  			.fa-female {
  				font-size: 11em;
  				padding: .05em 0;
  			}

  			.fa-user {
  				font-size: 12em;
  			}
  		}
  	}
  }
  */
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .component[data-component=LogoWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .component[data-component=LogoWidget] {
  height: 15em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large {
  overflow: hidden;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-building {
  font-size: 13em;
  padding: 0.08em 0;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-qrcode {
  font-size: 16em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-puzzle-piece {
  font-size: 15em;
  padding: 0.05em 0;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-briefcase {
  font-size: 15em;
  padding: 0.075em 0;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-male {
  font-size: 13em;
  padding: 0.075em 0;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-female {
  font-size: 13em;
  padding: 0.075em 0;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .component[data-component=LogoWidget].large .fa-user {
  font-size: 15em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_model {
  bottom: 1em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .jobtype {
  bottom: 1em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .textareafiedCont {
  max-height: 17em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col {
  text-align: start;
  width: 100%;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > *, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > * {
  padding: 0.5em 0.3em 0.2em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .obj_cont a {
  color: #009de2;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .obj_cont a, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .obj_cont a {
  color: #009de2;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont {
  height: auto;
  white-space: initial;
  text-align: center;
  font-weight: 700;
  color: #1b8748;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .original_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .original_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .original_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .original_cost {
  font-size: 1.9em;
  text-decoration: line-through !important;
  font-weight: lighter;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .original_price {
  color: #bbb;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .original_cost {
  color: #bbb;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .original_price {
  color: #bbb;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .original_cost {
  color: #bbb;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .original_price {
  color: #bbb;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .original_cost {
  color: #bbb;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .original_price {
  color: #777;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .original_cost {
  color: #777;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .original_price {
  color: #777;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .original_cost {
  color: #777;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .original_price, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .original_price {
  color: #777;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .original_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .original_cost {
  color: #777;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .wage {
  font-size: 2.1em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .price {
  margin-left: 0.75em;
  margin-right: 0.2em;
}

html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .cost {
  margin-left: 0.75em;
  margin-right: 0.2em;
}

html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .wage {
  margin-left: 0.75em;
  margin-right: 0.2em;
}

html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .price {
  margin-left: 0.75em;
  margin-right: 0.2em;
}

html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .cost {
  margin-left: 0.75em;
  margin-right: 0.2em;
}

html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .wage {
  margin-left: 0.75em;
  margin-right: 0.2em;
}

html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .price {
  margin-left: 0.75em;
  margin-right: 0.2em;
}

html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .cost {
  margin-left: 0.75em;
  margin-right: 0.2em;
}

html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .wage {
  margin-left: 0.75em;
  margin-right: 0.2em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .price {
  margin-left: 0.2em;
  margin-right: 0.75em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .cost {
  margin-left: 0.2em;
  margin-right: 0.75em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .wage {
  margin-left: 0.2em;
  margin-right: 0.75em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .price {
  margin-left: 0.2em;
  margin-right: 0.75em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .cost {
  margin-left: 0.2em;
  margin-right: 0.75em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .wage {
  margin-left: 0.2em;
  margin-right: 0.75em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .price, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .price {
  margin-left: 0.2em;
  margin-right: 0.75em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .cost, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .cost {
  margin-left: 0.2em;
  margin-right: 0.75em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .wage, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .wage {
  margin-left: 0.2em;
  margin-right: 0.75em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .currency {
  font-size: 1.1em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .currency {
  margin: 0 0 0 0.1em;
}

html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .currency {
  margin: 0 0 0 0.1em;
}

html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .currency {
  margin: 0 0 0 0.1em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .currency {
  margin: 0 0.1em 0 0;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .currency {
  margin: 0 0.1em 0 0;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .currency {
  margin: 0 0.1em 0 0;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .on_sale {
  font-family: sans-serif;
  color: #ea0038;
  text-shadow: 0 1px 1px #c4532d;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .save {
  font-weight: normal;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .off {
  color: #bbb;
  text-shadow: 0 0 0.1em #888;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .save {
  color: #bbb;
  text-shadow: 0 0 0.1em #888;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .off {
  color: #bbb;
  text-shadow: 0 0 0.1em #888;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .save {
  color: #bbb;
  text-shadow: 0 0 0.1em #888;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .off {
  color: #bbb;
  text-shadow: 0 0 0.1em #888;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .save {
  color: #bbb;
  text-shadow: 0 0 0.1em #888;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .off {
  color: #777;
  text-shadow: 0 0 0.1em #ccc;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .save {
  color: #777;
  text-shadow: 0 0 0.1em #ccc;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .off {
  color: #777;
  text-shadow: 0 0 0.1em #ccc;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .save {
  color: #777;
  text-shadow: 0 0 0.1em #ccc;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .off {
  color: #777;
  text-shadow: 0 0 0.1em #ccc;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .save {
  color: #777;
  text-shadow: 0 0 0.1em #ccc;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .off_price, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .off_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .save_price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .save_cost {
  font-weight: normal;
  margin: 0.4em;
  text-shadow: 0 0 0.1em;
  color: #ea0038;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .ttls, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .ttls {
  font-weight: 700;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .ttls {
  color: #999;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .ttls, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .ttls {
  color: #999;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem {
  display: inline-block;
  margin: 0.25em 0.25em 0.1em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .textareafiedCont {
  max-height: 7em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont {
  display: flex;
  flex-direction: column;
  font-size: 1.3em;
  /*
  @at-root %activitycard > .btm_cont, %activitycard > .crud_cont {
  	@include media(medium, min) {
  		flex-direction: row;
  		flex-wrap: nowrap;

  		// .txt {
  		// 	display: none;
  		// }

  		// .num {
  		// 	padding: 0 .3em;
  		// }
  	}
  }
  */
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  min-height: 2em;
  /*
  @at-root %activitycard > .btm_cont > div, %activitycard > .crud_cont > div {
  	vertical-align: top;

  	@include media(medium, min) {
  		// width: 33.3%;
  		flex: 1 1 0;
  	}
  }
  */
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > div {
  border-top: thin solid #444;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > div, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > div {
  border-top: thin solid #444;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > div {
  border-top: thin solid #eee;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > div, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > div {
  border-top: thin solid #eee;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .lft_col > span.fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .lft_col > span.fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .lft_col > span.fa {
  transition: font-size 0.25s ease-in-out;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .lft_col > span.fa.applied, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .lft_col > span.fa.applied,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .lft_col > span.fa.applied {
  color: #25d366;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .lft_col > span.fa.in_transition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .lft_col > span.fa.in_transition,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .lft_col > span.fa.in_transition {
  font-size: 1.3em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont {
  line-height: 2em;
  flex-grow: 1;
}
@media only screen and (min-width: 320px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .text {
    display: inline;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .colspan1, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .colspan1,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .colspan1 {
  /*
  @at-root %activitycard > .btm_cont > .colspan1, %activitycard > .crud_cont > .colspan1 {
  	width: 66.5%;
  }
  */
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .colspan2, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .colspan2,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .colspan2 {
  /*
  @at-root %activitycard > .btm_cont > .colspan2, %activitycard > .crud_cont > .colspan2 {
  	width: 100%;
  }
  */
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont .component[data-component=HelpfulnessWidget], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont .component[data-component=HelpfulnessWidget],
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont .component[data-component=HelpfulnessWidget] {
  width: 100%;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont .txt, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont .txt,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont .num {
  font-size: 0.8em;
  padding-inline-start: 0.25em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont .txt {
  color: #bbb;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont .num {
  color: #bbb;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont .txt, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont .txt {
  color: #bbb;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont .num {
  color: #bbb;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont .txt {
  color: #777;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont .num {
  color: #777;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont .txt, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont .txt {
  color: #777;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont .num {
  color: #777;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont .seperator, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont .seperator,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont .seperator {
  display: inline-block;
  margin: 0 1em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont .seperator {
  color: #999;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont .seperator, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont .seperator {
  color: #999;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont .seperator {
  color: #999;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont .seperator, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont .seperator {
  color: #999;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont {
  font-weight: bolder;
  white-space: initial;
  color: #1b8748;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money {
  color: #aaa;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money {
  color: #555;
}

html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .fa-money {
  margin: 0 0.1em 0 0;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .fa-money {
  margin: 0 0 0 0.1em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency {
  font-size: 0.7em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[dir=ltr] .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[dir=ltr] .wage_cont .currency {
  margin: 0 0 0 0.1em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[dir=rtl] .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[dir=rtl] .wage_cont .currency {
  margin: 0 0.1em 0 0;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period {
  text-transform: uppercase;
  font-variant: all-petite-caps;
  font-style: oblique;
  font-size: 0.9em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period {
  color: #bbb;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period {
  color: #777;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .helpfulness_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .helpfulness_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .helpfulness_cont {
  font-size: 0.9em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont {
  width: 100%;
  height: 0.3em;
  box-shadow: 0 0 0.2em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont > .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont > .green {
  background: #1b8748;
  height: 100%;
  float: left;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont > .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont > .red {
  background: #911435;
  height: 100%;
  float: right;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .rev_ratings_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .rev_ratings_cont {
  text-align: center;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont {
  height: 1.75em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .ttl {
  font-size: 0.9em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate {
  box-shadow: 0 gray;
  height: 0.25em;
  margin: -1.2em 0 0;
  width: 98%;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate {
  box-shadow: 0 1em 0.2em #888;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate {
  box-shadow: 0 1em 0.2em #ccc;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .green {
  background: #1b8748;
  display: inline-block;
  height: 100%;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .rev_ratings_cont > .rating_cont .rate .red {
  background: #911435;
  display: inline-block;
  height: 100%;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .textareafiedCont {
  overflow: auto;
  white-space: pre-wrap;
  text-align: initial;
  padding: 0.25em 0.3em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col html[data-colorScheme=dark] .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col html[data-colorScheme=dark] .textareafiedCont {
  box-shadow: 0 -1em 2em inset #888;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col html[data-colorScheme=light] .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .textareafiedCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col html[data-colorScheme=light] .textareafiedCont {
  box-shadow: 0 -1em 2em inset #ccc;
}

/*
* ___ We should only use a mixin if an argument is used ___
* Using a mixin is the equivalent of copying and pasting code!
*/
.pulse {
  animation-name: inline-ugppr2d;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes inline-ugppr2d {
  from {
    background-color: yellow;
  }
  to {
    background-color: red;
  }
}
@keyframes randomMoveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  15% {
    transform: translate(0.3em, -0.2em) scale(0.5);
  }
  30% {
    transform: translate(0.4em, 0.1em) scale(0.45);
  }
  45% {
    transform: translate(0.25em, 0.2em) scale(0.45);
  }
  60% {
    transform: translate(-0.3em, 0) scale(0.4);
  }
  85% {
    transform: translate(-0.1em, -0.25em) scale(0.5);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes squareMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1em, 0);
    /* Move right */
  }
  50% {
    transform: translate(1em, 1em);
    /* Move down */
  }
  75% {
    transform: translate(0, 1em);
    /* Move left */
  }
  100% {
    transform: translate(0, 0);
    /* Move up to the start */
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(0.45);
  }
  45% {
    transform: scale(0.45);
  }
  60% {
    transform: scale(0.4);
  }
  85% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tiltAround {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(7deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  85% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shakeAside {
  0% {
    transform: translateX(0);
    /* Start at original position */
  }
  15% {
    transform: translateX(-0.1em);
    /* Move left */
  }
  30% {
    transform: translateX(0.1em);
    /* Move right */
  }
  45% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  60% {
    transform: translateX(0.25em);
    /* Move left*/
  }
  75% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  100% {
    transform: translateX(0);
    /* Return to original position */
  }
}
@keyframes shakeAside-TiltAround {
  0% {
    transform: translateX(0) rotate(0deg);
    /* Start at original position */
  }
  25% {
    transform: translateX(-0.1em) rotate(-5deg);
    /* Move left and tilt left */
  }
  50% {
    transform: translateX(0.1em) rotate(5deg);
    /* Move right and tilt right */
  }
  75% {
    transform: translateX(-0.25em) rotate(-5deg);
    /* Move left and tilt left */
  }
  100% {
    transform: translateX(0) rotate(0deg);
    /* Return to original position */
  }
}
@keyframes shakeAside-tiltAround-zoomInOut {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
  15% {
    transform: translateX(-0.1em) rotate(5deg) scale(0.5);
  }
  30% {
    transform: translateX(0.1em) rotate(-5deg) scale(0.45);
  }
  45% {
    transform: translateX(-0.25em) rotate(7deg) scale(0.45);
  }
  60% {
    transform: translateX(0.25em) rotate(-7deg) scale(0.4);
  }
  85% {
    transform: translateX(-0.25em) rotate(10deg) scale(0.5);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes tiltAround-zoomInOut {
  0% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(5deg) scale(0.5);
  }
  30% {
    transform: rotate(-5deg) scale(0.45);
  }
  45% {
    transform: rotate(7deg) scale(0.45);
  }
  60% {
    transform: rotate(-7deg) scale(0.4);
  }
  85% {
    transform: rotate(10deg) scale(0.5);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes fadeInOut {
  from {
    opacity: 0.05;
  }
  to {
    opacity: 0.75;
  }
}
/*
* ___ We should only use a mixin if an argument is used ___
* Using a mixin is the equivalent of copying and pasting code!
*/
.pulse {
  animation-name: inline-ugppr42;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes inline-ugppr42 {
  from {
    background-color: yellow;
  }
  to {
    background-color: red;
  }
}

@keyframes randomMoveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  15% {
    transform: translate(0.3em, -0.2em) scale(0.5);
  }
  30% {
    transform: translate(0.4em, 0.1em) scale(0.45);
  }
  45% {
    transform: translate(0.25em, 0.2em) scale(0.45);
  }
  60% {
    transform: translate(-0.3em, 0) scale(0.4);
  }
  85% {
    transform: translate(-0.1em, -0.25em) scale(0.5);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes squareMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1em, 0);
    /* Move right */
  }
  50% {
    transform: translate(1em, 1em);
    /* Move down */
  }
  75% {
    transform: translate(0, 1em);
    /* Move left */
  }
  100% {
    transform: translate(0, 0);
    /* Move up to the start */
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(0.45);
  }
  45% {
    transform: scale(0.45);
  }
  60% {
    transform: scale(0.4);
  }
  85% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tiltAround {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(7deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  85% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shakeAside {
  0% {
    transform: translateX(0);
    /* Start at original position */
  }
  15% {
    transform: translateX(-0.1em);
    /* Move left */
  }
  30% {
    transform: translateX(0.1em);
    /* Move right */
  }
  45% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  60% {
    transform: translateX(0.25em);
    /* Move left*/
  }
  75% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  100% {
    transform: translateX(0);
    /* Return to original position */
  }
}
@keyframes shakeAside-TiltAround {
  0% {
    transform: translateX(0) rotate(0deg);
    /* Start at original position */
  }
  25% {
    transform: translateX(-0.1em) rotate(-5deg);
    /* Move left and tilt left */
  }
  50% {
    transform: translateX(0.1em) rotate(5deg);
    /* Move right and tilt right */
  }
  75% {
    transform: translateX(-0.25em) rotate(-5deg);
    /* Move left and tilt left */
  }
  100% {
    transform: translateX(0) rotate(0deg);
    /* Return to original position */
  }
}
@keyframes shakeAside-tiltAround-zoomInOut {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
  15% {
    transform: translateX(-0.1em) rotate(5deg) scale(0.5);
  }
  30% {
    transform: translateX(0.1em) rotate(-5deg) scale(0.45);
  }
  45% {
    transform: translateX(-0.25em) rotate(7deg) scale(0.45);
  }
  60% {
    transform: translateX(0.25em) rotate(-7deg) scale(0.4);
  }
  85% {
    transform: translateX(-0.25em) rotate(10deg) scale(0.5);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes tiltAround-zoomInOut {
  0% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(5deg) scale(0.5);
  }
  30% {
    transform: rotate(-5deg) scale(0.45);
  }
  45% {
    transform: rotate(7deg) scale(0.45);
  }
  60% {
    transform: rotate(-7deg) scale(0.4);
  }
  85% {
    transform: rotate(10deg) scale(0.5);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes fadeInOut {
  from {
    opacity: 0.05;
  }
  to {
    opacity: 0.75;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  width: 0.3em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont .red, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont .red {
  background-color: #911435;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .rating_cont .green, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .rating_cont .green {
  background-color: #1b8748;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont {
  background-color: rgba(37, 211, 102, 0.1);
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont {
  background-color: rgba(37, 211, 102, 0.3);
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .open.closeDateCont .date {
  color: #25d366;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .open.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .open.closeDateCont .date {
  color: #1b8748;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont {
  background-color: rgba(234, 0, 56, 0.1);
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont {
  background-color: rgba(234, 0, 56, 0.3);
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closed.closeDateCont .date {
  color: #f15c6d;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closed.closeDateCont .date {
  color: #ea0038;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=dark] .closeDateCont .fa {
  color: #aaa;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .fa, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .fa,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col html[data-colorScheme=light] .closeDateCont .fa {
  color: #555;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .text {
  display: none;
  font-size: 0.8em;
}
@media only screen and (min-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .text,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .text {
    display: inline;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .mid_col .closeDateCont .date, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .mid_col .closeDateCont .date,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .mid_col .closeDateCont .date {
  font-size: 0.9em;
  white-space: nowrap;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont {
  font-family: sans-serif;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div {
  flex-grow: 1;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num {
  padding: 0.25em 28%;
  border-radius: 0.2em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .num {
  background-color: #444;
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .num {
  background-color: #ccc;
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text {
  font-size: 0.9em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=dark] .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=dark] .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=dark] .countdown_cont > div .text {
  color: #bbb;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont html[data-colorScheme=light] .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont html[data-colorScheme=light] .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont html[data-colorScheme=light] .countdown_cont > div .text {
  color: #777;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small {
  display: block;
}
@media only screen and (min-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.small {
    display: none;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large {
  display: none;
}
@media only screen and (min-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .price_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .cost_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large,
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont > div .text.large {
    display: block;
  }
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .jobtype, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .jobtype {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-weight: bolder;
  font-style: oblique;
  font-variant: petite-caps;
  background: #156038;
  color: #d9fdd3;
  border-radius: 0.2em;
  padding: 0.25em 0.5em;
  bottom: 2em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .jobtype, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .jobtype {
  left: 0.5em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .jobtype, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .jobtype {
  right: 0.5em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_model, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_model {
  position: absolute;
  pointer-events: none;
  user-select: none;
  background: #156038;
  color: #d9fdd3;
  border-radius: 0.2em;
  padding: 0.25em 0.5em;
  bottom: 2em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_model, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_model {
  right: 0.5em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_model, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_model {
  left: 0.5em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_condition, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_condition {
  position: absolute;
  pointer-events: none;
  user-select: none;
  background: #156038;
  color: #d9fdd3;
  border-radius: 0.2em;
  padding: 0.25em 0.5em;
  top: 0.5em;
}
html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_condition, html[dir=ltr] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_condition {
  left: 0.5em;
}

html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .mid_col > .p_condition, html[dir=rtl] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .mid_col > .p_condition {
  right: 0.5em;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont {
  height: auto;
  white-space: initial;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money {
  margin: 0 0.1em 0 0;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .fa-money {
  color: #aaa;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .fa-money, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .fa-money {
  color: #555;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .price,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .wage,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .wage {
  font-size: 1.25em;
  color: #1b8748;
  font-weight: 700;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency {
  font-size: 0.7em;
  margin: 0 0 0 0.1em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .currency {
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .currency, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .currency,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .currency {
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .on_sale {
  font-family: sans-serif;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .on_sale {
  color: #f15c6d;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .on_sale, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .on_sale {
  color: #ea0038;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off {
  color: #ddd;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save {
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off {
  color: #444;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save {
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost {
  margin: 0.4em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .off_cost {
  color: #f15c6d;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .discount_cont .save_cost {
  color: #f15c6d;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .off_cost {
  color: #ea0038;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .discount_cont .save_cost {
  color: #ea0038;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period {
  text-transform: uppercase;
  font-variant: all-petite-caps;
  font-style: oblique;
  font-size: 0.9em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=dark] .wage_cont .period {
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .period, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .period,
html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col html[data-colorScheme=light] .wage_cont .period {
  color: #444;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .btm_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont,
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .crud_cont > .rit_col .wage_cont .countdown_cont {
  margin-top: 0.5em;
}

/*
* ___ We should only use a mixin if an argument is used ___
* Using a mixin is the equivalent of copying and pasting code!
*/
.pulse {
  animation-name: inline-ugppr4d;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes inline-ugppr4d {
  from {
    background-color: yellow;
  }
  to {
    background-color: red;
  }
}

@keyframes randomMoveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  15% {
    transform: translate(0.3em, -0.2em) scale(0.5);
  }
  30% {
    transform: translate(0.4em, 0.1em) scale(0.45);
  }
  45% {
    transform: translate(0.25em, 0.2em) scale(0.45);
  }
  60% {
    transform: translate(-0.3em, 0) scale(0.4);
  }
  85% {
    transform: translate(-0.1em, -0.25em) scale(0.5);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes squareMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1em, 0);
    /* Move right */
  }
  50% {
    transform: translate(1em, 1em);
    /* Move down */
  }
  75% {
    transform: translate(0, 1em);
    /* Move left */
  }
  100% {
    transform: translate(0, 0);
    /* Move up to the start */
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(0.45);
  }
  45% {
    transform: scale(0.45);
  }
  60% {
    transform: scale(0.4);
  }
  85% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tiltAround {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(7deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  85% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shakeAside {
  0% {
    transform: translateX(0);
    /* Start at original position */
  }
  15% {
    transform: translateX(-0.1em);
    /* Move left */
  }
  30% {
    transform: translateX(0.1em);
    /* Move right */
  }
  45% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  60% {
    transform: translateX(0.25em);
    /* Move left*/
  }
  75% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  100% {
    transform: translateX(0);
    /* Return to original position */
  }
}
@keyframes shakeAside-TiltAround {
  0% {
    transform: translateX(0) rotate(0deg);
    /* Start at original position */
  }
  25% {
    transform: translateX(-0.1em) rotate(-5deg);
    /* Move left and tilt left */
  }
  50% {
    transform: translateX(0.1em) rotate(5deg);
    /* Move right and tilt right */
  }
  75% {
    transform: translateX(-0.25em) rotate(-5deg);
    /* Move left and tilt left */
  }
  100% {
    transform: translateX(0) rotate(0deg);
    /* Return to original position */
  }
}
@keyframes shakeAside-tiltAround-zoomInOut {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
  15% {
    transform: translateX(-0.1em) rotate(5deg) scale(0.5);
  }
  30% {
    transform: translateX(0.1em) rotate(-5deg) scale(0.45);
  }
  45% {
    transform: translateX(-0.25em) rotate(7deg) scale(0.45);
  }
  60% {
    transform: translateX(0.25em) rotate(-7deg) scale(0.4);
  }
  85% {
    transform: translateX(-0.25em) rotate(10deg) scale(0.5);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes tiltAround-zoomInOut {
  0% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(5deg) scale(0.5);
  }
  30% {
    transform: rotate(-5deg) scale(0.45);
  }
  45% {
    transform: rotate(7deg) scale(0.45);
  }
  60% {
    transform: rotate(-7deg) scale(0.4);
  }
  85% {
    transform: rotate(10deg) scale(0.5);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes fadeInOut {
  from {
    opacity: 0.05;
  }
  to {
    opacity: 0.75;
  }
}
#mainpage > .hdr .pnl2 {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  text-align: center;
}
html[data-colorScheme=dark] #mainpage > .hdr .pnl2, #mainpage > .hdr html[data-colorScheme=dark] .pnl2 {
  background-color: #444;
  color: #bbb;
}

html[data-colorScheme=light] #mainpage > .hdr .pnl2, #mainpage > .hdr html[data-colorScheme=light] .pnl2 {
  background-color: #eee;
  color: #444;
}

#mainpage > .hdr .pnl2 .pg_type_cont {
  transition: border-color ease-in-out 0.5s, color ease-in-out 0.25s;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 0.2em solid transparent;
  flex: 1 1 0px;
  border-radius: 0.2em;
  padding: 0.25em 0;
}
html[data-colorScheme=dark] #mainpage > .hdr .pnl2 .pg_type_cont:hover, #mainpage > .hdr html[data-colorScheme=dark] .pnl2 .pg_type_cont:hover {
  border-color: #bbb;
  color: #fff;
}

html[data-colorScheme=light] #mainpage > .hdr .pnl2 .pg_type_cont:hover, #mainpage > .hdr html[data-colorScheme=light] .pnl2 .pg_type_cont:hover {
  border-color: #777;
  color: #222;
}

html[data-colorScheme=dark] #mainpage > .hdr .pnl2 .pg_type_cont.active, #mainpage > .hdr html[data-colorScheme=dark] .pnl2 .pg_type_cont.active {
  border-color: #fa6533;
}

html[data-colorScheme=light] #mainpage > .hdr .pnl2 .pg_type_cont.active, #mainpage > .hdr html[data-colorScheme=light] .pnl2 .pg_type_cont.active {
  border-color: #fa6533;
}

#mainpage > .hdr .pnl2 .pg_type_cont > .fa {
  padding: 0.5em 0 0.25em;
}
html[data-colorScheme=dark] #mainpage > .hdr .pnl2 .pg_type_cont > .fa, #mainpage > .hdr html[data-colorScheme=dark] .pnl2 .pg_type_cont > .fa {
  text-shadow: 0 0.05em 0.1em #222;
}

html[data-colorScheme=light] #mainpage > .hdr .pnl2 .pg_type_cont > .fa, #mainpage > .hdr html[data-colorScheme=light] .pnl2 .pg_type_cont > .fa {
  text-shadow: 0 0.05em 0.1em #fff;
}

#mainpage > .hdr .pnl2 .pg_type_cont > .fa:hover {
  color: inherit;
}
#mainpage > .hdr .pnl2 .txt {
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 576px) {
  #mainpage > .hdr .pnl2 .txt {
    display: block;
  }
}
@media only screen and (max-width: 320px) {
  #mainpage > .hdr .pnl2 .txt {
    display: none;
  }
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, color 0.15s ease-in-out;
  border: thin solid transparent;
  padding: 0.1em 0.5em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem {
  background-color: #293136;
  color: #046692;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem {
  background-color: #def3fc;
  color: #027eb5;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=dark] .jfItem:hover {
  background-color: #21343c;
  color: #027eb5;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, html[data-colorScheme=light] #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList html[data-colorScheme=light] .jfItem:hover {
  background-color: #caecfa;
  color: #046692;
}

#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipRequestedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=CompanionshipAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductPriceChangedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCostChangedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWageChangedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAppliedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobReviewedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobDeclinedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobOfferedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobAcceptedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobWithdrawnCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingAdvisorAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingContributorAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCommentAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ReviewReplyAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=MediaAddedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=LikedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover, #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=FollowedCard] > .top_cont > .rit_col > .jfList .jfItem a:hover {
  text-decoration: none;
}

/*
* ___ We should only use a mixin if an argument is used ___
* Using a mixin is the equivalent of copying and pasting code!
*/
.pulse {
  animation-name: inline-ugppr5b;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes inline-ugppr5b {
  from {
    background-color: yellow;
  }
  to {
    background-color: red;
  }
}

@keyframes randomMoveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  15% {
    transform: translate(0.3em, -0.2em) scale(0.5);
  }
  30% {
    transform: translate(0.4em, 0.1em) scale(0.45);
  }
  45% {
    transform: translate(0.25em, 0.2em) scale(0.45);
  }
  60% {
    transform: translate(-0.3em, 0) scale(0.4);
  }
  85% {
    transform: translate(-0.1em, -0.25em) scale(0.5);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes squareMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1em, 0);
    /* Move right */
  }
  50% {
    transform: translate(1em, 1em);
    /* Move down */
  }
  75% {
    transform: translate(0, 1em);
    /* Move left */
  }
  100% {
    transform: translate(0, 0);
    /* Move up to the start */
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(0.45);
  }
  45% {
    transform: scale(0.45);
  }
  60% {
    transform: scale(0.4);
  }
  85% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tiltAround {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(7deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  85% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shakeAside {
  0% {
    transform: translateX(0);
    /* Start at original position */
  }
  15% {
    transform: translateX(-0.1em);
    /* Move left */
  }
  30% {
    transform: translateX(0.1em);
    /* Move right */
  }
  45% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  60% {
    transform: translateX(0.25em);
    /* Move left*/
  }
  75% {
    transform: translateX(-0.25em);
    /* Move left*/
  }
  100% {
    transform: translateX(0);
    /* Return to original position */
  }
}
@keyframes shakeAside-TiltAround {
  0% {
    transform: translateX(0) rotate(0deg);
    /* Start at original position */
  }
  25% {
    transform: translateX(-0.1em) rotate(-5deg);
    /* Move left and tilt left */
  }
  50% {
    transform: translateX(0.1em) rotate(5deg);
    /* Move right and tilt right */
  }
  75% {
    transform: translateX(-0.25em) rotate(-5deg);
    /* Move left and tilt left */
  }
  100% {
    transform: translateX(0) rotate(0deg);
    /* Return to original position */
  }
}
@keyframes shakeAside-tiltAround-zoomInOut {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
  15% {
    transform: translateX(-0.1em) rotate(5deg) scale(0.5);
  }
  30% {
    transform: translateX(0.1em) rotate(-5deg) scale(0.45);
  }
  45% {
    transform: translateX(-0.25em) rotate(7deg) scale(0.45);
  }
  60% {
    transform: translateX(0.25em) rotate(-7deg) scale(0.4);
  }
  85% {
    transform: translateX(-0.25em) rotate(10deg) scale(0.5);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
@keyframes tiltAround-zoomInOut {
  0% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(5deg) scale(0.5);
  }
  30% {
    transform: rotate(-5deg) scale(0.45);
  }
  45% {
    transform: rotate(7deg) scale(0.45);
  }
  60% {
    transform: rotate(-7deg) scale(0.4);
  }
  85% {
    transform: rotate(10deg) scale(0.5);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes fadeInOut {
  from {
    opacity: 0.05;
  }
  to {
    opacity: 0.75;
  }
}
.awa_btn {
  cursor: pointer;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  gap: 0.5em;
  padding: 0.5em 1em;
  border-radius: 0.75em;
  font-weight: 700;
}
html[data-colorScheme=dark] .awa_btn {
  background-color: #53a6fd;
  color: #222;
}

html[data-colorScheme=light] .awa_btn {
  background-color: #007bfc;
  color: #fff;
}

html[data-colorScheme=dark] .awa_btn:not([disabled]):focus {
  background-color: #007bfc;
  border-color: #53a6fd;
}

html[data-colorScheme=dark] .awa_btn:not([disabled]):hover {
  background-color: #007bfc;
  border-color: #53a6fd;
}

html[data-colorScheme=light] .awa_btn:not([disabled]):focus {
  background-color: #0063cb;
  border-color: #007bfc;
}

html[data-colorScheme=light] .awa_btn:not([disabled]):hover {
  background-color: #0063cb;
  border-color: #007bfc;
}

html[data-colorScheme=dark] .awa_btn:not([disabled]):active {
  background-color: #0063cb;
  border-color: #99cafe;
}

html[data-colorScheme=light] .awa_btn:not([disabled]):active {
  background-color: #0451a3;
  border-color: #53a6fd;
}

html[data-colorScheme=dark] .awa_btn.secondary {
  background-color: #3b4a54;
  color: #fff;
}

html[data-colorScheme=light] .awa_btn.secondary {
  background-color: #d1d7db;
  color: #222;
}

html[data-colorScheme=dark] .awa_btn.secondary:not([disabled]):focus {
  background-color: #54656f;
  border-color: #667781;
}

html[data-colorScheme=dark] .awa_btn.secondary:not([disabled]):hover {
  background-color: #54656f;
  border-color: #667781;
}

html[data-colorScheme=light] .awa_btn.secondary:not([disabled]):focus {
  background-color: #aebac1;
  border-color: #8696a0;
}

html[data-colorScheme=light] .awa_btn.secondary:not([disabled]):hover {
  background-color: #aebac1;
  border-color: #8696a0;
}

html[data-colorScheme=dark] .awa_btn.secondary:not([disabled]):active {
  background-color: #667781;
  border-color: #8696a0;
}

html[data-colorScheme=light] .awa_btn.secondary:not([disabled]):active {
  background-color: #8696a0;
  border-color: #667781;
}

.awa_btn[disabled] {
  opacity: 0.4;
  cursor: default !important;
}
.awa_info_panels {
  display: flex;
  height: 2em;
  width: 100%;
}
html[data-colorScheme=dark] .awa_info_panels {
  background-color: #444;
  color: #ddd;
}

html[data-colorScheme=light] .awa_info_panels {
  background-color: #ddd;
  color: #444;
}

.awa_info_panels .awa_info_pnl_l_cont {
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-top: thin solid;
  flex-grow: 1;
  padding: 0.25em 0.5em;
}
html[data-colorScheme=dark] .awa_info_panels .awa_info_pnl_l_cont {
  border-color: #aaa;
}

html[data-colorScheme=light] .awa_info_panels .awa_info_pnl_l_cont {
  border-color: #555;
}

html[dir=ltr] .awa_info_panels .awa_info_pnl_l_cont {
  border-radius: 0 15px 0 0;
}

html[dir=rtl] .awa_info_panels .awa_info_pnl_l_cont {
  border-radius: 15px 0 0 0;
}

html[dir=ltr] .awa_info_panels .awa_info_pnl_l_cont .fa {
  padding: 0 30px 0 0;
}

html[dir=rtl] .awa_info_panels .awa_info_pnl_l_cont .fa {
  padding: 0 0 0 30px;
}

.awa_info_panels .awa_info_pnl_r_cont {
  border-bottom: thin solid;
}
html[data-colorScheme=dark] .awa_info_panels .awa_info_pnl_r_cont {
  border-color: #aaa;
}

html[data-colorScheme=light] .awa_info_panels .awa_info_pnl_r_cont {
  border-color: #555;
}

html[dir=ltr] .awa_info_panels .awa_info_pnl_r_cont {
  border-radius: 0 0 0 15px;
}

html[dir=rtl] .awa_info_panels .awa_info_pnl_r_cont {
  border-radius: 0 0 15px 0;
}

.awa_info_panels .awa_info_pnl_r_cont .fa {
  padding: 0 10px;
}

#mb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100001;
  text-align: center;
  padding: 0.1em 0.2em;
}
#mb .msg {
  border-radius: 4px;
  margin: 0 0 0.3em;
  padding: 0.5em;
  background: #f5f5f5;
}
#mb .success {
  color: #007700;
}
#mb .info {
  color: #0000BB;
}
#mb .warning {
  color: #ffff4d;
}
#mb .error {
  color: #FF8000;
}
#mb .fatal {
  color: #DD0000;
}

html {
  height: 100%;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  scrollbar-width: thin;
}
html[data-colorScheme=light] {
  background-color: #fff;
  color: #222;
}
html[data-colorScheme=light][data-app-status=error] {
  background-color: #fdc1ad;
}
html[data-colorScheme=light][data-app-status=fatal] {
  background-color: #faa0aa;
}
html[data-colorScheme=light][data-app-status=info] {
  background-color: #d1c4ff;
}
html[data-colorScheme=light][data-app-status=warning] {
  background-color: #ffe4af;
}
html[data-colorScheme=dark] {
  background-color: #222;
  color: #fff;
  scrollbar-color: rgba(34, 34, 34, 0.16) transparent;
}
html[data-colorScheme=dark][data-app-status=error] {
  background-color: #fdc1ad;
}
html[data-colorScheme=dark][data-app-status=fatal] {
  background-color: #faa0aa;
}
html[data-colorScheme=dark][data-app-status=info] {
  background-color: #d1c4ff;
}
html[data-colorScheme=dark][data-app-status=warning] {
  background-color: #ffe4af;
}
html::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
}
html::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
}
html::-webkit-scrollbar-thumb[data-colorScheme=dark] {
  background-color: rgba(34, 34, 34, 0.16);
}
html::-webkit-scrollbar-track {
  background: rgba(34, 34, 34, 0.1);
}
html::-webkit-scrollbar-track[data-colorScheme=dark] {
  background-color: transparent;
}
html * {
  margin: 0;
  padding: 0;
  border: 0;
}
html[dir=ltr] * {
  direction: ltr;
}

html[dir=rtl] * {
  direction: rtl;
}

html a {
  color: inherit;
  text-decoration: none;
}
html input,
html textarea {
  outline: none;
  background-color: transparent;
}
html[data-colorScheme=dark] input, html[data-colorScheme=dark] textarea {
  color: #fff;
}

html[data-colorScheme=light] input, html[data-colorScheme=light] textarea {
  color: #222;
}

html[data-colorScheme=dark] label {
  color: #5e47de;
}

html[data-colorScheme=light] label {
  color: #5e47de;
}

html select {
  background: none;
  color: inherit;
  outline: none;
}
html ol,
html ul {
  list-style: none;
}
html > body {
  font: 13px/20px normal Helvetica, Arial, sans-serif;
  overflow: hidden;
  height: inherit;
  background-color: inherit;
}
html[data-colorScheme=dark] > body .fa.fa-disabled {
  color: #777;
}

html[data-colorScheme=light] > body .fa.fa-disabled {
  color: #777;
}

html > body .fa.fa-centered {
  position: absolute;
  right: 50%;
  top: 50%;
}
html > body .fa.fa-hovered, html > body .fa.fa-selected, html > body .fa:not(.fa-no-hover):not(.fa-disabled):focus, html > body .fa:not(.fa-no-hover):not(.fa-disabled):hover {
  cursor: pointer;
}
html[data-colorScheme=dark] > body .fa.fa-hovered, html[data-colorScheme=dark] > body .fa.fa-selected, html[data-colorScheme=dark] > body .fa:not(.fa-no-hover):not(.fa-disabled):focus, html[data-colorScheme=dark] > body .fa:not(.fa-no-hover):not(.fa-disabled):hover {
  color: #c4532d;
}

html[data-colorScheme=light] > body .fa.fa-hovered, html[data-colorScheme=light] > body .fa.fa-selected, html[data-colorScheme=light] > body .fa:not(.fa-no-hover):not(.fa-disabled):focus, html[data-colorScheme=light] > body .fa:not(.fa-no-hover):not(.fa-disabled):hover {
  color: #fc9775;
}

html > body .ui-autocomplete {
  z-index: 10001;
  overflow: auto;
}
html[data-colorScheme=dark] > body .ui-autocomplete {
  background: unset;
  background-color: #444;
  border-color: #777;
  color: #ddd;
}

html[data-colorScheme=light] > body .ui-autocomplete {
  background: unset;
  background-color: #eee;
  border-color: #bbb;
  color: #444;
}

html > body .ui-autocomplete a {
  color: inherit;
}

#mainpage {
  min-height: 100%;
}
#mainpage > .hdr {
  z-index: 10001;
  transition: top ease-in-out 0.5s;
}
#mainpage > .hdr .pnl1 .c_cont {
  display: flex;
}
#mainpage > .hdr .pnl1 .c_cont input {
  flex-grow: 1;
  text-overflow: ellipsis;
}
#mainpage > .body {
  transition: margin-left 0.25s ease-in-out, margin-right 0.25s ease-in-out;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 700%;
  margin-left: 0%;
}
#mainpage > .body > .domainWindow {
  transition: padding-top ease-in-out 0.5s;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}
#mainpage > .body > .domainWindow[data-domainWindow=home], #mainpage > .body > .domainWindow[data-domainWindow=businesses], #mainpage > .body > .domainWindow[data-domainWindow=jobs], #mainpage > .body > .domainWindow[data-domainWindow=products], #mainpage > .body > .domainWindow[data-domainWindow=services], #mainpage > .body > .domainWindow[data-domainWindow=users], #mainpage > .body > .domainWindow[data-domainWindow=writings] {
  padding-top: 5em;
}
@media only screen and (max-width: 576px) {
  #mainpage > .body > .domainWindow[data-domainWindow=home], #mainpage > .body > .domainWindow[data-domainWindow=businesses], #mainpage > .body > .domainWindow[data-domainWindow=jobs], #mainpage > .body > .domainWindow[data-domainWindow=products], #mainpage > .body > .domainWindow[data-domainWindow=services], #mainpage > .body > .domainWindow[data-domainWindow=users], #mainpage > .body > .domainWindow[data-domainWindow=writings] {
    padding-top: 6.7em;
  }
}
@media only screen and (max-width: 320px) {
  #mainpage > .body > .domainWindow[data-domainWindow=home], #mainpage > .body > .domainWindow[data-domainWindow=businesses], #mainpage > .body > .domainWindow[data-domainWindow=jobs], #mainpage > .body > .domainWindow[data-domainWindow=products], #mainpage > .body > .domainWindow[data-domainWindow=services], #mainpage > .body > .domainWindow[data-domainWindow=users], #mainpage > .body > .domainWindow[data-domainWindow=writings] {
    padding-top: 5em;
  }
}
#mainpage > .body > .domainWindow > .optsCont {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: sticky;
  width: 100%;
  flex-shrink: 0;
  top: 0;
  z-index: 2;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .optsCont {
  box-shadow: 0 0.25em 1em 0.25em #444;
  background: #666;
  color: #222;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .optsCont {
  box-shadow: 0 0.25em 1em 0.25em #eee;
  background: #ccc;
  color: #222;
}

#mainpage > .body > .domainWindow > .optsCont > .r_cont {
  transition: flex-wrap 0.5s ease 0s;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  overflow: hidden;
}
#mainpage > .body > .domainWindow > .optsCont.miniMode > .r_cont {
  flex-wrap: nowrap;
}

#mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont {
  transition: border-color ease-in-out 0.5s, color ease-in-out 0.25s;
  cursor: pointer;
  overflow: hidden;
  text-transform: capitalize;
  vertical-align: top;
  white-space: nowrap;
  border-bottom: 0.2em solid transparent;
  margin: 0.5em 0.25em 0;
  border-radius: 0.2em;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont:hover {
  border-bottom: 0.2em solid #bbb;
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont:hover {
  border-bottom: 0.2em solid #777;
  color: #222;
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont.active {
  border-color: #fa6533;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont.active {
  border-color: #fa6533;
}

#mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont .fa {
  font-size: 5em;
}
#mainpage > .body > .domainWindow > .optsCont.miniMode > .r_cont > .opt_cont .fa {
  font-size: 1.5em;
}

#mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont .fa:hover {
  color: inherit;
}
#mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont > .opt_txt {
  transition: color ease-in-out 0.25s;
}
html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont > .opt_txt {
  color: #ddd;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont > .opt_txt {
  color: #444;
}

#mainpage > .body > .domainWindow > .optsCont.miniMode > .r_cont > .opt_cont > .opt_txt {
  display: inline-block;
}
@media only screen and (max-width: 320px) {
  #mainpage > .body > .domainWindow > .optsCont.miniMode > .r_cont > .opt_cont > .opt_txt {
    display: none;
  }
}

html[data-colorScheme=dark] #mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont:hover > .opt_txt {
  color: #fff;
}

html[data-colorScheme=light] #mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont:hover > .opt_txt {
  color: #222;
}

#mainpage > .body > .domainWindow > .optsCont.miniMode > .r_cont > .opt_cont > .opt_txt .extra {
  display: none;
}

@media only screen and (max-width: 320px) {
  #mainpage > .body > .domainWindow > .optsCont > .r_cont > .opt_cont > .opt_txt .extra {
    display: none;
  }
}
#mainpage > .body > .domainWindow > .gridCont {
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  #mainpage > .body > .domainWindow > .gridCont {
    justify-content: space-evenly;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .sideCont {
  display: none;
  height: 100%;
  overflow-y: auto;
}
#mainpage > .body > .domainWindow > .gridCont > .sideCont.first {
  max-width: 15em;
}
@media only screen and (min-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .sideCont.first {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  #mainpage > .body > .domainWindow > .gridCont > .sideCont.first {
    width: 15%;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .sideCont.last {
  max-width: 20em;
}
@media only screen and (min-width: 768px) {
  #mainpage > .body > .domainWindow > .gridCont > .sideCont.last {
    display: block;
    width: 20%;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: auto;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  width: 65%;
  max-width: 60em;
  flex-grow: 1;
  gap: 2em 0.75em;
  padding: 0.5em 0 0;
}
@media only screen and (min-width: 320px) {
  #mainpage > .body > .domainWindow > .gridCont > .body:not:has(> .component[data-component=WritingCard]) {
    padding: 0.5em 0.25em 0;
  }
}
@media only screen and (min-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body {
    padding: 0.5em 0.5em 0;
  }
}
@media only screen and (min-width: 768px) {
  #mainpage > .body > .domainWindow > .gridCont > .body {
    padding: 0.5em 1em 0;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=UserCard] {
  width: 100%;
}
@media only screen and (min-width: 320px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=UserCard] {
    width: 47%;
    max-width: 20em;
  }
}
@media only screen and (min-width: 992px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=BusinessCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=JobCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ProductCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=ServiceCard], #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=UserCard] {
    width: 32%;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCard] {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=WritingCard] {
    width: 47%;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .component[data-component=settingsBody] {
  padding-top: 10em;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .defaultMsgCont {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-flow: column;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0 7%;
  color: gray;
}
#mainpage > .body > .domainWindow > .gridCont > .body > .defaultMsgCont .fa {
  font-size: 12em;
}
@media only screen and (max-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .defaultMsgCont .fa {
    opacity: 0.1;
  }
}
#mainpage > .body > .domainWindow > .gridCont > .body > .defaultMsgCont .msg {
  font-size: 2em;
  margin-top: 2em;
  line-height: 1.2em;
  word-spacing: 0.2em;
}
@media only screen and (max-width: 576px) {
  #mainpage > .body > .domainWindow > .gridCont > .body > .defaultMsgCont .msg {
    margin-top: -4.5em;
    z-index: 1;
  }
}

.awa_pg {
  position: absolute;
  overflow-y: auto;
  background: inherit;
  z-index: inherit;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0px;
  padding: 0px;
}

.wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.wrap > .hdr {
  position: fixed;
  width: 100%;
  z-index: 1;
}
html[data-colorScheme=dark] .wrap > .hdr {
  color: #ddd;
}

html[data-colorScheme=light] .wrap > .hdr {
  color: #444;
}

.wrap > .hdr .pnl1 {
  height: 2.5em;
  display: flex;
  overflow: hidden;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.25em;
}
html[data-colorScheme=dark] .wrap > .hdr .pnl1 {
  background-color: #222;
}

html[data-colorScheme=light] .wrap > .hdr .pnl1 {
  background-color: #fff;
}

.wrap > .hdr .pnl1 .c_cont {
  overflow: hidden;
  flex-grow: 1;
  padding: 0 1em;
}
.wrap > .hdr .pnl1 .c_cont > .ttl {
  overflow: hidden;
  text-transform: capitalize;
  font-variant: small-caps;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
  font-style: italic;
}
.wrap > .body {
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
}

#pgz_cont {
  z-index: 10001;
  display: none;
}
#pgz_cont > .awa_pg.keepUp {
  transform: translateY(-100%);
}
#pgz_cont > .awa_pg.keepDown {
  transform: translateY(100%);
}
#pgz_cont > .awa_pg.keepLeft {
  transform: translateX(-100%);
}
#pgz_cont > .awa_pg.keepRight {
  transform: translateX(100%);
}
#pgz_cont > .awa_pg.slideUp {
  transition: transform 0.5s ease-out;
  transform: translateY(0);
}
#pgz_cont > .awa_pg.slideDown {
  transition: transform 0.5s ease-out;
  transform: translateY(0);
}
#pgz_cont > .awa_pg.slideLeft {
  transition: transform 0.5s ease-out;
  transform: translateX(0);
}
#pgz_cont > .awa_pg.slideRight {
  transition: transform 0.5s ease-out;
  transform: translateX(0);
}
#pgz_cont > .awa_pg.closeUp {
  transition: transform 0.25s ease-out;
  transform: translateY(-100%);
}
#pgz_cont > .awa_pg.closeDown {
  transition: transform 0.25s ease-out;
  transform: translateY(100%);
}
#pgz_cont > .awa_pg.closeLeft {
  transition: transform 0.25s ease-out;
  transform: translateX(-100%);
}
#pgz_cont > .awa_pg.closeRight {
  transition: transform 0.25s ease-out;
  transform: translateX(100%);
}
#pgz_cont > #dflt_pg > .fa {
  font-size: 3em;
  position: absolute;
  top: 45%;
  left: 45%;
}

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