/* == Font Size == */
.case.tiny.text {
  font-size: 0.8rem;
}
.case.mini.text {
  font-size: 0.9rem;
}
.case.small.text {
  font-size: 0.8rem;
}
.case.normal.text {
  font-size: 1.2rem;
}
.case.medium.text {
  font-size: 1.4rem;
}
.case.large.text {
  font-size: 1.625rem;
}
.case.big.text {
  font-size: 2.25rem;
}
.case.huge.text {
  font-size: 2.75rem;
}
.case.massive.text {
  font-size: 3.25rem;
}
.case.thin.text {
  font-weight: 200;
}
.case.normal.text {
  font-weight: 300;
}
.case.semi.text {
  font-weight: 400;
}
.case.demi.text {
  font-weight: 500;
}
.case.bold.text {
  font-weight: 700;
}
.case.italic.text {
  font-style: italic;
}
.case.link.text {
  cursor: pointer;
}
.case.primary.text {
  color: var(--primary-color);
}
.case.secondary.text {
  color: var(--secondary-color);
}
.case.positive.text {
  color: var(--positive-color);
}
.case.negative.text {
  color: var(--negative-color);
}
.case.warning.text {
  color: var(--alert-color);
}
.case.light.text {
  color: var(--light-color);
}
.case.white.text {
  color: #fff;
}
.case.dark.text {
  color: var(--dark-color);
}
.case.grey.text {
  color: var(--grey-color);
}
.case.strike.text {
  text-decoration: line-through;
}
.case.caps {
  text-transform: uppercase;
}
.case.short.text {
  line-height: 1;
}
.case.tall.text {
  line-height: 2;
}
.case.dimmed.text {
  opacity: 0.75;
}
.case.very.dimmed.text {
  opacity: 0.5;
}
.case.outline {
  outline: 2px dashed var(--primary-color);
  outline-offset: 2px;
}
.case.icon.text {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
}
.case.icon.text > .icon,
.case.icon.text > .image,
.case.icon.text > .label {
  flex: 0 0 auto;
  max-width: 100%;
  margin-right: 0.5em;
}
.case.icon.text.middle {
  display: flex;
  justify-content: center;
}
.case.icon.right.text > .icon,
.case.icon.right.text > .image,
.case.icon.right.text > .label {
  margin-left: 0.5em;
  margin-right: auto;
}
.case.primary.bg {
  background-color: var(--primary-color);
}
.case.primary.inverted.bg {
  background-color: var(--primary-color-inverted);
}
.case.secondary.bg {
  background-color: var(--secondary-color);
}
.case.secondary.inverted.bg {
  background-color: var(--secondary-color-inverted);
}
.case.positive.bg {
  background-color: var(--positive-color);
}
.case.positive.inverted.bg {
  background-color: var(--positive-color-inverted);
}
.case.negative.bg {
  background-color: var(--negative-color);
}
.case.negative.inverted.bg {
  background-color: var(--negative-color-inverted);
}
.case.light.bg {
  background-color: var(--light-color);
}
.case.white.bg {
  background-color: #fff;
}
.case.dark.bg {
  background-color: var(--dark-color);
}
.case.grey.bg {
  background-color: var(--grey-color);
}
.case.grey100.bg {
  background-color: var(--grey-color-100);
}
.case.grey300.bg {
  background-color: var(--grey-color-300);
}
.case.grey500.bg {
  background-color: var(--grey-color-500);
}
.case.boxed {
  border: 1px solid var(--grey-color-300);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.case.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);
}
.case.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);
}
.case.primary.fill {
  fill: var(--primary-color);
}
.case.secondary.fill {
  fill: var(--secondary-color);
}
.case.positive.fill {
  fill: var(--positive-color);
}
.case.negative.fill {
  fill: var(--negative-color);
}
.case.warning.fill {
  fill: var(--alert-color);
}
.case.white.fill {
  fill: #fff;
}
.case.primary.stop {
  stop-color: var(--primary-color);
}
.case.secondary.stop {
  stop-color: var(--secondary-color);
}
.case.positive.stop {
  stop-color: var(--positive-color);
}
.case.negative.stop {
  stop-color: var(--negative-color);
}
.case.white.stop {
  stop-color: #fff;
}
.case.purple.stop {
  stop-color: #2d1582;
}
.case.primary.gradient {
  background-image: linear-gradient(
    150deg,
    var(--primary-color) 0%,
    var(--primary-color-hover) 100%
  );
  background-repeat: repeat-x;
}
.case.animated.text {
  background-image: -webkit-linear-gradient(358deg, #f35626, #feab3a);
  background-image: linear-gradient(92deg, #f35626, #feab3a);
  background-clip: text;
  -webkit-animation: hue 10s infinite linear;
  animation: hue 10s infinite linear;
  text-fill-color: transparent;
}
@-webkit-keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
  }
}
@keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="hueRotate" color-interpolation-filters="sRGB" values="0" /></filter></svg>#filter');
    filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
    filter: hue-rotate(-360deg);
  }
}
.highlite {
  background-color: #fffde7 !important;
}
.case.boxed {
  border: 1px solid var(--grey-color-300);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.case.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);
}
.case.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);
}
.case.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;
}
.case.readonly:before {
  position: absolute;
  content: "";
  top: 0%;
  left: 0%;
  background: rgba(255, 255, 255, 0.75);
  width: 100%;
  height: 100%;
  border-radius: 0.25em;
  z-index: 10;
}
.case.rounded {
  border-radius: 0.25rem;
}
.case.top.rounded {
  border-radius: 0.25rem 0.25rem 0 0;
}
.case.bottom.rounded {
  border-radius: 0 0 0.25rem 0.25rem;
}
.truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* == Scroller == */
.scrollbox {
  overflow: auto;
}
/* == Tabs == */
.case.tabs .nav,
.case.navs .nav {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
}
.case.tabs .nav li,
.case.navs .nav li {
  margin-right: 1rem;
}
.case.tabs .nav li:last-child,
.case.navs .nav li:last-child {
  margin-right: 0;
}
.case.tabs .nav li a,
.case.navs .nav li a {
  border: 1px solid var(--grey-color-300);
  padding: 0.5rem 1.75rem;
  border-radius: 0.25rem;
  display: flex;
  background: #fff;
  flex-flow: row wrap;
  font-weight: 600;
  color: var(--primary-color);
}
.case.tabs .nav li a .icon,
.case.tabs .nav li a img,
.case.navs .nav li a .icon,
.case.navs .nav li a img {
  flex: 0 0 auto;
  max-width: 100%;
  align-self: center;
  margin-right: 0.5rem;
}
.case.tabs .nav li a.right .icon,
.case.tabs .nav li a.right img,
.case.navs .nav li a.right .icon,
.case.navs .nav li a.right img {
  margin-left: 0.5rem;
}
.case.tabs .nav li.active a,
.case.tabs .nav li a:hover,
.case.navs .nav li.active a,
.case.navs .nav li a:hover {
  background-color: var(--primary-color);
  color: var(--primary-color-inverted);
}
.case.tabs .tab {
  margin-bottom: 1rem;
  margin-top: 1rem;
  border-radius: 0.25rem;
  padding: 2rem 1rem;
  background: #fff;
  border: 1px solid var(--grey-color-300);
}
.case.fluid.tabs .nav li,
.case.fluid.navs .nav li {
  flex: 1 1 0px;
  min-width: 0;
}
.case.simple.tabs .nav li a {
  border: 0;
  padding: 0.5rem 1.5rem;
  border-radius: 0;
  color: var(--dark-color);
}
.case.simple.tabs .nav li.active a,
.case.simple.tabs .nav li a:hover,
.case.simple.tabs .nav li.active a,
.case.simple.tabs .nav li a:hover {
  background-color: transparent;
  color: var(--primary-color);
}
/* Mobile */
@media screen and (max-width: 48.063em) {
  .case.tabs .nav,
  .case.navs .nav {
    flex-direction: column;
  }
  .case.tabs .nav li,
  .case.navs .nav li {
    margin-right: 0;
  }
  .case.lang.tabs .nav {
    margin-top: -1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
/* == Accordion == */
.case.accordion section {
  border-radius: 0.25rem;
  position: relative;
  border: 1px solid var(--grey-color-300);
  margin-bottom: 0.75rem;
}
.case.accordion section h6.summary {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0;
}
.case.accordion section h6.summary a {
  padding: 2rem 4.5rem 2rem 2rem;
  display: block;
  font-weight: 400;
  position: relative;
  border-radius: 0.25rem 0.25rem 0 0;
}
.case.accordion section h6.summary a::before {
  font-family: "CaseIcons";
  position: absolute;
  content: url("/uploads/icons/up-arrow.svg");
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(0);
  transition: transform 0.1s linear;
}
.case.accordion section.active h6.summary a {
  /* background-color: var(--primary-color); */
  /* color: var(--primary-color-inverted); */
}
.case.accordion section.active h6.summary a::before {
  /* content: url("/uploads/icons/down-arrow.svg"); */
  transform: translateY(-50%) rotate(90deg);
}

.case.accordion section .details {
  padding: 2rem;
}
/* == Breadcrumb == */
.case.breadcrumb {
  display: inline-flex;
  margin: 0;
  align-items: center;
  font-weight: 400;
  position: relative;
}
.case.breadcrumb:first-child {
  margin-top: 0;
}
.case.breadcrumb:last-child {
  margin-bottom: 0;
}
.case.breadcrumb .divider {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  white-space: nowrap;
  margin: 0 0.75rem 0;
  color: rgba(0, 0, 0, 0.5);
}
.case.breadcrumb a {
  color: var(--primary-color);
}
.case.breadcrumb a:hover {
  color: var(--primary-active);
}
.case.breadcrumb .icon.divider {
  font-size: 0.875rem;
}
.case.breadcrumb a.section {
  cursor: pointer;
}
.case.breadcrumb .section {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
.case.breadcrumb .active.section {
  color: var(--dark-color);
  font-weight: 500;
}
.case.white.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.case.white.breadcrumb a:hover {
  color: #fff;
}
.case.white.breadcrumb .active.section {
  color: #fff;
  font-weight: 500;
}
.case.white.breadcrumb .divider {
  color: rgba(255, 255, 255, 0.5);
}
.case.small.breadcrumb {
  font-size: 14px;
  font-size: 0.875rem;
}
/* == Sticky == */
.case.sticky {
  position: static;
  -webkit-transition: none;
  transition: none;
  z-index: 2;
}
.case.sticky.bound {
  position: absolute;
  left: auto;
  right: auto;
}
.case.sticky.fixed {
  position: fixed;
  left: auto;
  right: auto;
}
.case.sticky.bound.top,
.case.sticky.fixed.top {
  top: 0px;
  bottom: auto;
}
.case.sticky.bound.bottom,
.case.sticky.fixed.bottom {
  top: auto;
  bottom: 0px;
}
.case.native.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

@media screen and (max-width: 48.063em) {
  ul.case.basic.tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  ul.case.basic.tabs li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
/* == Pagination == */
.case.pagination {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
}
.case.pagination .item {
  flex: 1 1 0px;
  min-width: 0;
  line-height: 1rem;
  padding: 0.75rem;
  font-weight: 700;
  color: var(--dark-color);
  border-radius: 0.25rem;
  text-align: center;
}
.case.pagination .item.active,
.case.pagination .item.active:hover {
  background-color: var(--primary-color);
  color: var(--primary-color-inverted);
  cursor: default;
}
.case.pagination .item.active,
.case.pagination .item.active:hover {
}
.case.pagination .item:hover {
  color: var(--primary-color);
}
.case.pagination .item.disabled {
  color: var(--grey-color-500);
  cursor: not-allowed;
}
.case.small.pagination .item {
  padding: 0.75rem;
  font-size: 0.875rem;
}
/* == Dividers == */
.case.divider {
  border-top: 1px solid var(--dark-color-shadow);
  height: 0;
  margin: 0.5rem 0;
}
.case.vertical.divider {
  border: 0;
  background-color: var(--dark-color-shadow);
  height: 0.75rem;
  margin: 0 0.5rem;
  width: 1px;
  display: inline-block;
}
.case.basic.divider {
  border-top: 1px solid var(--dark-color-shadow);
  height: 0;
  margin: 0;
}
.case.space.divider {
  border: 0;
  margin: 0;
  height: 1rem;
}
.case.auto.divider {
  border-color: var(--grey-color-300);
  margin: 1rem -2rem;
}
.case.wide.divider {
  border-top: 3px solid var(--grey-color-300);
}
.case.very.wide.divider {
  border-top: 5px solid var(--grey-color-300);
}
.case.relaxed.divider {
  margin: 1rem 0;
}
.case.very.relaxed.divider {
  margin: 1.5rem 0;
}
/* == Lightbox == */
.wbox-overlay *,
.wbox-overlay *:before,
.wbox-overlay *:after {
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}
.wbox-overlay * {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.wbox-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1040;
  -webkit-transform: translateZ(1000px);
  transform: translateZ(1000px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.wbox-title {
  width: 100%;
  height: 40px;
  float: left;
  text-align: center;
  line-height: 28px;
  font-size: 12px;
  padding: 6px 40px;
  overflow: hidden;
  position: fixed;
  display: none;
  left: 0;
  z-index: 1050;
}
.wbox-close {
  cursor: pointer;
  position: fixed;
  top: -1px;
  right: 0;
  width: 50px;
  height: 40px;
  padding: 6px;
  display: block;
  background-position: 10px center;
  overflow: hidden;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  z-index: 1050;
}
.wbox-num {
  cursor: pointer;
  position: fixed;
  left: 0;
  height: 40px;
  overflow: hidden;
  line-height: 28px;
  font-size: 12px;
  padding: 6px 10px;
  display: none;
  z-index: 1050;
}
.wbox-next,
.wbox-prev {
  position: fixed;
  top: 50%;
  margin-top: -1em;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 2em;
  height: 2em;
  z-index: 1050;
}
.wbox-next span,
.wbox-prev span {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: #b6b6b6;
  border-right-color: #b6b6b6;
  text-indent: -100px;
  position: absolute;
  top: 8px;
  display: block;
}
.wbox-prev {
  left: 2em;
}
.wbox-next {
  right: 2em;
}
.wbox-prev span {
  left: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.wbox-next span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 10px;
}
.wbox-inline {
  width: 420px;
  height: 315px;
  height: 70vh;
  padding: 10px;
  background: #fff;
  margin: 0 auto;
  overflow: auto;
  text-align: left;
}
.wboxframe {
  max-width: 100%;
  border: none;
  width: 100%;
  height: 260px;
  height: 70vh;
}
.wboxframe.wbvid {
  height: 260px;
}

@media (min-width: 768px) {
  .wboxframe,
  .wbox-inline {
    width: 90%;
    height: 360px;
    height: 70vh;
  }
  .wboxframe.wbvid {
    width: 640px;
    height: 360px;
  }
}

@media (min-width: 992px) {
  .wboxframe,
  .wbox-inline {
    max-width: 1200px;
    width: 80%;
    height: 540px;
    height: 70vh;
  }
  .wboxframe.wbvid {
    width: 960px;
    height: 540px;
  }
}
.wbox-open {
  overflow: hidden;
}
.wbox-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  max-height: 100%;
}
.wbox-content {
  text-align: center;
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20px 10px;
}
.wbox-container img {
  max-width: 100%;
  height: auto;
}
.wbox-content .children {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  max-width: 100%;
  text-align: initial;
}
.wbox-content img.children {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wbox-preloader {
  position: relative;
}
.wbox-preloader:before {
  position: absolute;
  content: "";
  top: 0%;
  left: 0%;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: 100;
}
.wbox-preloader:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -1.5em 0em 0em -1.5em;
  width: 3em;
  height: 3em;
  -webkit-animation: form-spin 0.6s linear;
  animation: form-spin 0.6s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #377dff rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15)
    rgba(0, 0, 0, 0.15);
  border-style: solid;
  border-width: 0.2em;
  box-shadow: 0px 0px 0px 1px transparent;
  visibility: visible;
  z-index: 101;
}
@-webkit-keyframes form-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes form-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.wbox-content.swipe-left {
  margin-left: -200px !important;
}
.wbox-content.swipe-right {
  margin-left: 200px !important;
}
.animated {
  webkit-transition: margin 300ms ease-out;
  -webkit-transition: margin 300ms ease-out;
  transition: margin 300ms ease-out;
}
.animate-in {
  opacity: 1;
}
.animate-out {
  opacity: 0;
}
/* == Rating Stars == */
.case.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;
}
.case.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: 0.25em;
  color: #9e9e9e;
  width: 1em;
  height: 1em;
  line-height: 1em;
}
.case.stars a {
  font-size: 0.813em;
  margin-left: 2em;
  border-bottom: 1px dotted #7e7e7e;
  color: #7e7e7e;
}
.case.stars a span {
  font-weight: 500;
}
.case.stars .star.active .icon,
.case.stars .star.selected .icon {
  color: #ff9800;
}
