/* == Font Size == */
.wojo.tiny.text {
  font-size: 0.688rem;
}
.wojo.mini.text {
  font-size: 0.750rem;
}
.wojo.small.text {
  font-size: 0.875rem;
}
.wojo.normal.text {
  font-size: 1rem;
}
.wojo.medium.text {
  font-size: 1.25rem;
}
.wojo.large.text {
  font-size: 1.625rem;
}
.wojo.big.text {
  font-size: 2.250rem;
}
.wojo.huge.text {
  font-size: 2.75rem;
}
.wojo.massive.text {
  font-size: 3.250rem;
}
.wojo.thin.text {
  font-weight: 300;
}
.wojo.light.text {
  font-weight: 400;
}
.wojo.semi.text {
  font-weight: 500;
}
.wojo.demi.text {
  font-weight: 700;
}
.wojo.bold.text {
  font-weight: 800;
}
.wojo.italic.text {
  font-style: italic;
}
.wojo.link.text {
  cursor: pointer;
}
.wojo.primary.text {
  color: var(--primary-color);
}
.wojo.secondary.text {
  color: var(--secondary-color);
}
.wojo.positive.text {
  color: var(--positive-color);
}
.wojo.negative.text {
  color: var(--negative-color);
}
.wojo.light.text {
  color: var(--light-color);
}
.wojo.white.text {
  color: #fff;
}
.wojo.dark.text {
  color: var(--dark-color);
}
.wojo.grey.text {
  color: var(--grey-color);
}
.wojo.strike.text {
  text-decoration: line-through;
}
.wojo.caps {
  text-transform: uppercase;
}
.wojo.short.text {
  line-height: 1;
}
.wojo.tall.text {
  line-height: 2;
}
.wojo.dimmed.text {
  opacity: .75;
}
.wojo.very.dimmed.text {
  opacity: .5;
}
.wojo.icon.text {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
}
.wojo.icon.text > .icon,
.wojo.icon.text > .image,
.wojo.icon.text > .label {
  flex: 0 0 auto;
  max-width: 100%;
  margin-right: .5em;
}
.wojo.icon.text.middle {
  display: flex;
  justify-content: center;
}
.wojo.icon.right.text > .icon,
.wojo.icon.right.text > .image,
.wojo.icon.right.text > .label {
  margin-left: .5em;
  margin-right: auto;
}
.wojo.primary.bg {
  background-color: var(--primary-color);
}
.wojo.primary.inverted.bg {
  background-color: var(--primary-color-inverted);
}
.wojo.secondary.bg {
  background-color: var(--secondary-color);
}
.wojo.secondary.inverted.bg {
  background-color: var(--secondary-color-inverted);
}
.wojo.positive.bg {
  background-color: var(--positive-color);
}
.wojo.positive.inverted.bg {
  background-color: var(--positive-color-inverted);
}
.wojo.negative.bg {
  background-color: var(--negative-color);
}
.wojo.negative.inverted.bg {
  background-color: var(--negative-color-inverted);
}
.wojo.light.bg {
  background-color: var(--light-color);
}
.wojo.dark.bg {
  background-color: var(--dark-color);
}
.wojo.grey.bg {
  background-color: var(--grey-color);
}
.wojo.grey100.bg {
  background-color: var(--grey-color-100);
}
.wojo.grey300.bg {
  background-color: var(--grey-color-300);
}
.wojo.grey500.bg {
  background-color: var(--grey-color-500);
}
.wojo.boxed {
  border: 1px solid var(--grey-color-300);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wojo.shadow {
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.42), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.wojo.soft.shadow {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.wojo.readonly {
  position: relative;
  cursor: not-allowed;
  point-events: none;
  text-shadow: none !important;
  color: transparent !important;
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}
.wojo.readonly:before {
  position: absolute;
  content: '';
  top: 0%;
  left: 0%;
  background: rgba(255, 255, 255, 0.75);
  width: 100%;
  height: 100%;
  border-radius: 0.250em;
  z-index: 10;
}
.truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.highlite {
  background-color: #fffde7;
}
.dimmable {
  position: relative;
  z-index: 0;
}
.dimmable.active::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--dark-color-shadow);
}
/* == Tabs == */
.wojo.tabs .nav,
.wojo.navs .nav {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.wojo.tabs .nav li,
.wojo.navs .nav li {
  margin-right: 1rem;
}
.wojo.tabs .nav li:last-child,
.wojo.navs .nav li:last-child {
  margin-right: 0;
}
.wojo.tabs .nav li a,
.wojo.navs .nav li a {
  border: 1px solid var(--grey-color-300);
  padding: .5rem 1.75rem;
  border-radius: 0.250rem;
  display: flex;
  background: #fff;
  flex-flow: row wrap;
  font-weight: 600;
  color: var(--primary-color);
}
.wojo.tabs .nav li a .icon,
.wojo.tabs .nav li a img,
.wojo.navs .nav li a .icon,
.wojo.navs .nav li a img {
  flex: 0 0 auto;
  max-width: 100%;
  align-self: center;
  margin-right: .5rem;
}
.wojo.tabs .nav li a.right .icon,
.wojo.tabs .nav li a.right img,
.wojo.navs .nav li a.right .icon,
.wojo.navs .nav li a.right img {
  margin-left: .5rem;
}
.wojo.tabs .nav li.active a,
.wojo.tabs .nav li a:hover,
.wojo.navs .nav li.active a,
.wojo.navs .nav li a:hover {
  background-color: var(--primary-color);
  color: var(--primary-color-inverted);
}
.wojo.tabs .tab {
  margin-bottom: 1rem;
  margin-top: 1rem;
  border-radius: .250rem;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--grey-color-300);
}
.wojo.fluid.tabs .nav li,
.wojo.fluid.navs .nav li {
  flex: 1 1 0px;
  min-width: 0;
}
.wojo.navs.secondary {
  background-color: var(--secondary-color);
  border-radius: .250rem;
  padding: 1rem;
}
.wojo.navs.secondary .nav li a {
  background: transparent;
  color: #fff;
  border: 0;
}
.wojo.navs.secondary .nav li.active a,
.wojo.navs.secondary .nav li a:hover {
  background-color: rgba(255,255,255,.2);
}
.wojo.relaxed.tabs .nav li a,
.wojo.relaxed.navs .nav li a {
  padding: 1rem 1.75rem;
}

/* Mobile */
@media screen and (max-width:48.063em) {
.wojo.tabs .nav,
.wojo.navs .nav {
  flex-direction: column;
}
.wojo.tabs .nav li,
.wojo.navs .nav li {
  margin-right: 0
}
}
/* == Accordion == */
.wojo.accordion section {
  border-radius: .250rem;
  position: relative;
  border: 1px solid var(--grey-color-300);
  margin-bottom: .75rem;
}
.wojo.accordion section h6.summary {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0
}
.wojo.accordion section h6.summary a {
  padding: 2rem 4.5rem 2rem 2rem;
  display: block;
  font-weight: 400;
  position: relative;
  border-radius: .250rem .250rem 0 0;
}
.wojo.accordion section h6.summary a::before {
  font-family: "WojoIcons";
  position: absolute;
  content: "\e9e6";
  top: 50%;
  right: 2rem;
  transform: translateY(-50%)
}
.wojo.accordion section.active h6.summary a {
  background-color: var(--primary-color);
  color: var(--primary-color-inverted);
}
.wojo.accordion section.active h6.summary a::before {
  content: "\ea0c";
}
.wojo.accordion section .details {
  padding: 2rem;
}
/* == Breadcrumb == */
.wojo.breadcrumb {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  font-weight: 300;
  text-transform: lowercase;
  margin-bottom: 2rem;
}
.wojo.breadcrumb .divider {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  white-space: nowrap;
  min-width: 0;
  margin: 0 .750rem;
  color: var(--grey-color-500);
}
.wojo.breadcrumb a.section {
  font-weight: 600;
  color: var(--primary-color);
}
.wojo.breadcrumb .active.section {
  font-weight: 400;
  color: var(--dark-color);
}
.wojo.small.breadcrumb {
  font-size: 0.875rem;
}
/* == Pagination == */
.wojo.pagination {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
}
.wojo.pagination .item {
  flex: 1 1 0px;
  min-width: 0;
  line-height: 1rem;
  padding: .750rem;
  font-weight: 700;
  color: var(--dark-color);
  border-radius: .250rem;
  text-align: center;
}
.wojo.pagination .item.active {
  background-color: var(--primary-color);
  color: var(--primary-color-inverted);
}
.wojo.pagination .item:hover {
  color: var(--primary-color);
}
.wojo.pagination .item.disabled {
  color: var(--grey-color-500);
  cursor: not-allowed;
}
.wojo.small.pagination .item {
  padding: .750rem;
  font-size: .875rem;
}
/* == Dividers == */
.wojo.divider {
  border-top: 1px solid var(--dark-color-shadow);
  height: 0;
  margin: 0.5rem 0;
}
.wojo.vertical.divider {
  border: 0;
  background-color: var(--dark-color-shadow);
  height: .750rem;
  margin: 0 0.5rem;
  width: 1px;
  display: inline-block
}
.wojo.basic.divider {
  border-top: 1px solid var(--dark-color-shadow);
  height: 0;
  margin: 0;
}
.wojo.space.divider {
  border: 0;
  margin: 0;
  height: 1rem;
}
.wojo.auto.divider {
  border-color: var(--grey-color-300);
  margin: 1rem -2rem;
}
.wojo.wide.divider {
  border-top: 3px solid var(--grey-color-300);
}
.wojo.very.wide.divider {
  border-top: 5px solid var(--grey-color-300);
}
/* == Uploader == */
.wojo.basic.uploader {
  border: 0;
  width: 100%;
  color: #92AAB0;
  padding: 0;
  margin-bottom: 0;
  font-size: 1em;
  text-align: left;
}
.wojo.uploader-active {
  border-color: #0B85A1;
}
.wojo.uploader div.or {
  font-size: 14px;
  font-weight: bold;
  color: #C0C0C0;
  padding: 10px;
}
.wojo.basic.uploader div.content label {
  background-color: transparent;
  padding: 0;
  font-size: 1rem;
  font-weight: normal;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  width: auto;
  margin: 0;
  box-shadow: none;
}
.wojo.uploader div.content span {
  cursor: pointer;
}
.wojo.uploader div.content input,
.wojo.button.uploader input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  border: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  direction: ltr;
  cursor: pointer;
}
.wojo.uploader div.content label:hover {
  background-color: #427fed;
}
.wojo.basic.uploader div.content label:hover {
  background-color: transparent;
}
.wojo.button.uploader {
  width: auto;
  margin: 0;
}
/* == Activity == */
ul.wojo.activity,
ul.wojo.activity li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.wojo.activity li {
  clear: both;
}
ul.wojo.activity li .intro {
  float: left;
  width: 150px;
  text-align: right;
  position: relative;
  font-size: .938em;
  font-weight: 700;
  padding: 1rem;
}
ul.wojo.activity li .intro:after,
ul.wojo.activity li .intro:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  right: -6px;
  border-radius: 10px;
  border: 2px solid var(--secondary-color);
  top: 1.5em;
  z-index: 3
}
ul.wojo.activity li:nth-child(2n) .content {
  background-color: var(--shadow-color);
}
ul.wojo.activity li .content {
  margin-left: 150px;
  padding: 1em;
  position: relative;
}
ul.wojo.activity li .content:before {
  position: absolute;
  height: 100%;
  content: "";
  border-left: 2px solid var(--secondary-color);
  left: 0;
  top: 0;
  z-index: 1
}
/* == Scroller == */
.scrollbox {
  overflow: auto;
}

@media screen and (max-width:769px) {
ul.wojo.activity li .intro {
  float: none;
  width: auto;
  text-align: left;
  padding: .5em 1em;
  background-color: var(--shadow-color);
}
ul.wojo.activity li:nth-child(2n) .content {
  background-color: rgba(0, 0, 0, 0);
}
ul.wojo.activity li .content {
  margin-left: 0;
  padding: .5em 1em;
  position: relative;
}
ul.wojo.activity li .intro:after,
ul.wojo.activity li .intro:before,
ul.wojo.activity li .content:before {
  display: none
}
}
/* == Rating Stars == */
.wojo.stars {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.wojo.stars .star {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-right: .25em;
  color: #9E9E9E;
  width: 1em;
  height: 1em;
  line-height: 1em;
}
.wojo.stars a {
  font-size: .813em;
  margin-left: 2em;
  border-bottom: 1px dotted #7e7e7e;
  color: #7e7e7e;
}
.wojo.stars a span {
  font-weight: 700;
}
.wojo.stars .star.active .icon,
.wojo.stars .star.selected .icon {
  color: #FF9800;
}
/* == Product Image  == */
.fluidbox {
  outline: none
}
.fluidbox__overlay {
  background-color: hsla(0,0%,100%,.85);
  cursor: pointer;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: -100%;
  left: 0;
  bottom: -100%;
  right: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out
}
.fluidbox--opened .fluidbox__overlay {
  pointer-events: auto
}
.fluidbox__wrap {
  background-position: center center;
  background-size: cover;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out
}
.fluidbox--closed .fluidbox__thumb,
.fluidbox__thumb {
  -webkit-transition: opacity 0s ease-in-out 0s;
  transition: opacity 0s ease-in-out 0s
}
.fluidbox__ghost {
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  -webkit-transition: opacity 0s 0s, -webkit-transform .5s 0s;
  transition: opacity 0s 0s, -webkit-transform .5s 0s;
  transition: opacity 0s 0s, transform .5s 0s;
  transition: opacity 0s 0s, transform .5s 0s, -webkit-transform .5s 0s
}
.fluidbox--opened .fluidbox__ghost {
  cursor: pointer;
  cursor: zoom-out
}
.fluidbox--closed .fluidbox__ghost {
  -webkit-transition: opacity 0s .5s, -webkit-transform .5s 0s;
  transition: opacity 0s .5s, -webkit-transform .5s 0s;
  transition: opacity 0s .5s, transform .5s 0s;
  transition: opacity 0s .5s, transform .5s 0s, -webkit-transform .5s 0s
}
.fluidbox__loader {
  opacity: 0;
  -webkit-perspective: 200px;
  perspective: 200px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0
}
.fluidbox__loader:before {
  background-color: hsla(0,0%,100%,.85);
  content: '';
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20%;
  padding-bottom: 20%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}
.fluidbox--loading .fluidbox__loader {
  opacity: 1;
  -webkit-transition: opacity .5s ease-in-out .5s;
  transition: opacity .5s ease-in-out .5s
}
.fluidbox--loading .fluidbox__loader:before {
  -webkit-animation: a 1s 0s infinite ease-in-out forwards;
  animation: a 1s 0s infinite ease-in-out forwards
}
@-webkit-keyframes a {
0% {
-webkit-transform:translate(-50%, -50%) rotateX(0) rotateY(0);
transform:translate(-50%, -50%) rotateX(0) rotateY(0)
}
50% {
-webkit-transform:translate(-50%, -50%) rotateX(-180deg) rotateY(0);
transform:translate(-50%, -50%) rotateX(-180deg) rotateY(0)
}
to {
-webkit-transform:translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg);
transform:translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg)
}
}
@keyframes a {
0% {
-webkit-transform:translate(-50%, -50%) rotateX(0) rotateY(0);
transform:translate(-50%, -50%) rotateX(0) rotateY(0)
}
50% {
-webkit-transform:translate(-50%, -50%) rotateX(-180deg) rotateY(0);
transform:translate(-50%, -50%) rotateX(-180deg) rotateY(0)
}
to {
-webkit-transform:translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg);
transform:translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg)
}
}
/* == AudioPlayer  == */
.audioplayer {
  height: 3rem;
  color: #fff;
  background-color: var(--dark-color);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  border-radius: .250rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.audioplayer-playpause,
.audioplayer-time,
.audioplayer-bar,
.audioplayer-volume {
  -webkit-flex: 1 1 0px;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.audioplayer-playpause,
.audioplayer-time,
.audioplayer-volume {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
}
.audioplayer-playpause {
  width: 3rem;
  border-radius: .250rem;
}
.audioplayer-playpause:hover,
 .audioplayer-playpause:focus,
 .audioplayer-volume:hover,
 .audioplayer-volume:focus {
  background-color: var(--primary-color);
}
.audioplayer-playpause a {
  display: block;
  height: 3rem;
  color: #fff;
  text-align: center;
  line-height: 3rem;
}
.audioplayer-playpause a .icon,
.audioplayer-volume-button a .icon {
  font-size: 1.25rem;
  color: #fff
}
.audioplayer-time {
  width: 4.375rem;
  text-align: center;
  font-size: .750rem;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.audioplayer-bar div {
  position: absolute;
  z-index: 2;
  top: 50%;
  height: 3px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.audioplayer-bar-loaded {
  background-color: var(--grey-color-300);
  height: 3px;
  width: 100%;
}
.audioplayer-bar-played {
  background: #fff;
  z-index: 3;
}
.audioplayer-volume {
  width: 3rem;
  height: 100%;
  cursor: pointer;
}
.audioplayer-volume-button {
  width: 100%;
  height: 100%;
}
.audioplayer-volume-button a {
  display: block;
  height: 3rem;
  color: #fff;
  text-align: center;
  line-height: 3rem;
}
.audioplayer-volume-adjust {
  height: 6.25rem;
  cursor: default;
  position: absolute;
  left: 0;
  right: 0;
  top: -9999px;
  background: var(--primary-color);
  z-index: 1;
}
.audioplayer-volume:not(:hover) .audioplayer-volume-adjust {
  opacity: 0;
}
.audioplayer-volume:hover .audioplayer-volume-adjust {
  top: auto;
  bottom: 100%;
}
.audioplayer-volume-adjust > div {
  width: 10%;
  height: 80%;
  background-color: var(--primary-color-inverted);
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin: 30% auto 0;
}
.audioplayer-volume-adjust div div {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 3;
}
.audioplayer-novolume .audioplayer-volume {
  display: none;
}
.audioplayer-bar,
 .audioplayer-bar div,
 .audioplayer-volume-adjust div {
  border-radius: 4px;
}
.audioplayer *,
 .audioplayer *:before,
 .audioplayer *:after {
  -webkit-transition: all .35s ease;
  -moz-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
}