/* global */
.jbox-wrapper {
  text-align: left;
  box-sizing: border-box; }

.jbox-title,
.jbox-content,
.jbox-container {
  position: relative;
  word-break: break-word;
  box-sizing: border-box; }

.jbox-container {
  background: #fff; }

.jbox-content {
  padding: 8px 10px;
  overflow-x: hidden;
  overflow-y: auto;
  transition: opacity .2s; }

/* jbox tooltip */
.jbox-tooltip .jbox-container,
.jbox-mouse .jbox-container {
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25); }

.jbox-tooltip .jbox-title,
.jbox-mouse .jbox-title {
  padding: 8px 10px 0;
  font-weight: bold; }

.jbox-hastitle.jbox-tooltip .jbox-content,
.jbox-hastitle.jbox-mouse .jbox-content {
  padding-top: 5px; }

.jbox-mouse {
  pointer-events: none; }

/* pointer */
.jbox-pointer {
  position: absolute;
  overflow: hidden; }

.jbox-pointer-top {
  top: 0; }

.jbox-pointer-bottom {
  bottom: 0; }

.jbox-pointer-left {
  left: 0; }

.jbox-pointer-right {
  right: 0; }

.jbox-pointer-top,
.jbox-pointer-bottom {
  width: 30px;
  height: 12px; }

.jbox-pointer-left,
.jbox-pointer-right {
  width: 12px;
  height: 30px; }

.jbox-pointer:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background: #fff;
  transform: rotate(45deg); }

.jbox-pointer-top:after {
  left: 5px;
  top: 6px;
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.15); }

.jbox-pointer-right:after {
  top: 5px;
  right: 6px;
  box-shadow: 1px -1px 2px rgba(0, 0, 0, 0.15); }

.jbox-pointer-bottom:after {
  left: 5px;
  bottom: 6px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); }

.jbox-pointer-left:after {
  top: 5px;
  left: 6px;
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.15); }

/* jbox modal */
.jbox-modal .jbox-container {
  border-radius: 4px; }

.jbox-modal .jbox-content {
  padding: 15px 20px; }

.jbox-modal .jbox-title {
  border-radius: 4px 4px 0 0;
  padding: 15px 20px;
  background: #fafafa;
  border-bottom: 1px solid #eee; }

.jbox-modal .jbox-footer {
  border-radius: 0 0 4px 4px; }

.jbox-modal.jbox-closebutton-title .jbox-title {
  padding-right: 55px; }

.jbox-modal .jbox-container,
.jbox-modal.jbox-closebutton-box:before {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4); }

/* close button */
.jbox-closebutton {
  cursor: pointer;
  position: absolute; }

.jbox-closebutton svg {
  position: absolute;
  top: 50%;
  right: 50%; }

.jbox-closebutton path {
  transition: fill .2s; }

.jbox-closebutton path {
  fill: #aaa; }

.jbox-closebutton:hover path {
  fill: #888; }

.jbox-closebutton:active path {
  fill: #666; }

/* close button in overlay */
.jbox-overlay .jbox-closebutton {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px; }

.jbox-overlay .jbox-closebutton svg {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-right: -10px; }

.jbox-overlay .jbox-closebutton path,
.jbox-overlay .jbox-closebutton:active path {
  fill: #ddd; }

.jbox-overlay .jbox-closebutton:hover path {
  fill: #fff; }

/* close button in title */
.jbox-closebutton-title .jbox-closebutton {
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px; }

.jbox-closebutton-title .jbox-closebutton svg {
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-right: -6px; }

/* close button in box */
.jbox-closebutton-box .jbox-closebutton {
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%; }

.jbox-closebutton-box .jbox-closebutton svg {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-right: -5px; }

.jbox-hastitle.jbox-modal.jbox-closebutton-box .jbox-closebutton {
  background: #fafafa; }

.jbox-closebutton-box:before {
  content: '';
  position: absolute;
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.jbox-pointerposition-top.jbox-closebutton-box:before {
  top: 5px; }

.jbox-pointerposition-right.jbox-closebutton-box:before {
  right: 2px; }

/* overlay */
.jbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.82); }

/* footer */
.jbox-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 8px 10px;
  border-radius: 0 0 3px 3px; }

/* block scrolling */
body[class^="jbox-blockscroll-"],
body[class*=" jbox-blockscroll-"] {
  overflow: hidden; }

/* draggable */
.jbox-draggable {
  cursor: move; }

/* spinner */
@keyframes jboxloading {
  to {
    transform: rotate(360deg); } }

.jbox-loading .jbox-content {
  opacity: .2; }

.jbox-loading-spinner .jbox-content {
  min-height: 38px !important;
  min-width: 38px !important;
  opacity: 0; }

.jbox-spinner {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px; }

.jbox-spinner:before {
  display: block;
  box-sizing: border-box;
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.8);
  animation: jboxloading .6s linear infinite; }

/* animations */
[class^="jbox-animated-"],
[class*=" jbox-animated-"] {
  animation-fill-mode: both; }

@keyframes jbox-tada {
  0% {
    transform: scale(1); }
  10%, 20% {
    transform: scale(0.8) rotate(-4deg); }
  30%, 50%, 70%, 90% {
    transform: scale(1.2) rotate(4deg); }
  40%, 60%, 80% {
    transform: scale(1.2) rotate(-4deg); }
  100% {
    transform: scale(1) rotate(0); } }

.jbox-animated-tada {
  animation: jbox-tada 1s; }

@keyframes jbox-tadasmall {
  0% {
    transform: scale(1); }
  10%, 20% {
    transform: scale(0.9) rotate(-2deg); }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(2deg); }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-2deg); }
  100% {
    transform: scale(1) rotate(0); } }

.jbox-animated-tadasmall {
  animation: jbox-tadasmall 1s; }

@keyframes jbox-flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.jbox-animated-flash {
  animation: jbox-flash .5s; }

@keyframes jbox-shake {
  0%, 100% {
    transform: translatex(0); }
  20%, 60% {
    transform: translatex(-6px); }
  40%, 80% {
    transform: translatex(6px); } }

.jbox-animated-shake {
  animation: jbox-shake .4s; }

@keyframes jbox-pulseup {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.15); }
  100% {
    transform: scale(1); } }

.jbox-animated-pulseup {
  animation: jbox-pulseup .25s; }

@keyframes jbox-pulsedown {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(0.85); }
  100% {
    transform: scale(1); } }

.jbox-animated-pulsedown {
  animation: jbox-pulsedown .25s; }

@keyframes jbox-popin {
  0% {
    transform: scale(0); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.jbox-animated-popin {
  animation: jbox-popin .25s; }

@keyframes jbox-popout {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(0); } }

.jbox-animated-popout {
  animation: jbox-popout .25s; }

@keyframes jbox-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.jbox-animated-fadein {
  animation: jbox-fadein .2s; }

@keyframes jbox-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.jbox-animated-fadeout {
  animation: jbox-fadeout .2s; }

@keyframes jbox-slideup {
  0% {
    transform: translatey(0); }
  100% {
    transform: translatey(-300px);
    opacity: 0; } }

.jbox-animated-slideup {
  animation: jbox-slideup .4s; }

@keyframes jbox-slideright {
  0% {
    transform: translatex(0); }
  100% {
    transform: translatex(300px);
    opacity: 0; } }

.jbox-animated-slideright {
  animation: jbox-slideright .4s; }

@keyframes jbox-slidedown {
  0% {
    transform: translatey(0); }
  100% {
    transform: translatey(300px);
    opacity: 0; } }

.jbox-animated-slidedown {
  animation: jbox-slidedown .4s; }

@keyframes jbox-slideleft {
  0% {
    transform: translatex(0); }
  100% {
    transform: translatex(-300px);
    opacity: 0; } }

.jbox-animated-slideleft {
  animation: jbox-slideleft .4s; }

.jbox-closebutton {
  z-index: 1; }

.jbox-countdown {
  border-radius: 3px 3px 0 0;
  z-index: 0;
  background: #000;
  opacity: .2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px; }

.jbox-countdown_inner {
  border-radius: 3px 3px 0 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  position: absolute;
  background: #fff; }

.jbox-confirm .jbox-content {
  text-align: center;
  padding: 46px 35px; }

.jbox-confirm-footer {
  height: 46px; }

.jbox-confirm-button {
  display: block;
  float: left;
  cursor: pointer;
  text-align: center;
  width: 50%;
  line-height: 46px;
  height: 46px;
  overflow: hidden;
  padding: 0 10px;
  transition: color .2s, background-color .2s;
  box-sizing: border-box; }

.jbox-confirm-button-cancel {
  border-bottom-left-radius: 4px;
  background: #ddd;
  color: #666; }

.jbox-confirm-button-cancel:hover,
.jbox-confirm-button-cancel:active {
  background: #ccc; }

.jbox-confirm-button-submit {
  border-bottom-right-radius: 4px;
  background: #7d0;
  color: #fff; }

.jbox-confirm-button-submit:hover,
.jbox-confirm-button-submit:active {
  background: #6c0; }

.jbox-confirm-button-cancel:active,
.jbox-confirm-button-submit:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2); }

@media (max-width: 500px) {
  .jbox-confirm .jbox-content {
    padding: 32px 20px; } }

.jbox-image .jbox-container {
  background-color: transparent; }

.jbox-image .jbox-content {
  padding: 0;
  width: 100%;
  height: 100%; }

.jbox-image-container {
  background: center center no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0; }

.jbox-image-label-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 100; }

.jbox-image-label {
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  left: 0;
  color: #fff;
  padding: 8px 40px;
  line-height: 24px;
  transition: opacity .36s;
  opacity: 0;
  z-index: 0;
  pointer-events: none; }

.jbox-image-label.expanded {
  background: #000; }

.jbox-image-label:not(.expanded) {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

.jbox-image-label.active {
  opacity: 1;
  pointer-events: all; }

.jbox-image-pointer-next,
.jbox-image-pointer-prev {
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: .8;
  transition: opacity .2s;
  background: no-repeat center center ;
  background-size: 11px auto;
  user-select: none;
  z-index: 1; }

.jbox-image-pointer-next:hover,
.jbox-image-pointer-prev:hover {
  opacity: 1; }

.jbox-image-pointer-next {
  right: 0;
  transform: scalex(-1); }

.jbox-image-pointer-prev {
  left: 0; }

.jbox-image-counter-container {
  position: absolute;
  right: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  color: #fff;
  text-align: right;
  display: none; }

.jbox-image-has-counter .jbox-image-counter-container {
  display: block; }

.jbox-image-has-counter .jbox-image-label:not(.expanded) {
  padding-right: 80px;
  text-indent: 40px; }

.jbox-overlay.jbox-overlay-image {
  background: #000; }

.jbox-image-not-found {
  background: #000; }

.jbox-image-not-found:before {
  content: '';
  box-sizing: border-box;
  display: block;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 5px solid #222;
  border-radius: 50%; }

.jbox-image-not-found:after {
  content: '';
  display: block;
  box-sizing: content-box;
  z-index: auto;
  width: 6px;
  height: 74px;
  margin-top: -37px;
  margin-left: -3px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #222;
  transform: rotatez(45deg);
  transform-origin: 50% 50% 0; }

/* download button */
.jbox-image-download-button-wrapper {
  position: absolute;
  top: -40px;
  right: 35px;
  height: 40px;
  display: flex;
  cursor: pointer;
  opacity: .8;
  transition: opacity .2s; }
  .jbox-image-download-button-wrapper:hover {
    opacity: 1; }

.jbox-image-download-button-icon {
  width: 40px;
  height: 40px;
  background: center center no-repeat ;
  background-size: 60%; }

.jbox-image-download-button-text {
  white-space: nowrap;
  line-height: 40px;
  padding: 0 10px 0 0;
  color: #fff;
  font-size: 14px; }

/* image spinner */
@keyframes jboximageloading {
  to {
    transform: rotate(360deg); } }

.jbox-image-loading .jbox-container:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  border: 4px solid #333;
  border-bottom-color: #666;
  animation: jboximageloading 1.2s linear infinite;
  border-radius: 50%; }

.jbox-notice {
  transition: margin .2s; }

.jbox-notice .jbox-container {
  border-radius: 3px;
  box-shadow: inset 1px 1px 0 0 rgba(255, 255, 255, 0.25), inset -1px -1px 0 0 rgba(0, 0, 0, 0.1); }

.jbox-notice .jbox-content {
  border-radius: 3px;
  padding: 12px 20px; }

.jbox-notice .jbox-title {
  padding: 12px 20px 0;
  font-weight: bold; }

.jbox-hastitle.jbox-notice .jbox-content {
  padding-top: 5px; }

.jbox-notice-black .jbox-container {
  color: #fff;
  background: #000; }

.jbox-notice-gray .jbox-container {
  color: #333;
  background: #f6f6f6; }

.jbox-notice-red .jbox-container {
  color: #fff;
  background: #d00; }

.jbox-notice-green .jbox-container {
  color: #fff;
  background: #5d0; }

.jbox-notice-blue .jbox-container {
  color: #fff;
  background: #07d; }

.jbox-notice-yellow .jbox-container {
  color: #000;
  background: #fd0; }

@media (max-width: 768px) {
  .jbox-notice .jbox-content {
    padding: 10px 15px; }
  .jbox-notice .jbox-title {
    padding: 10px 15px 0; } }

@media (max-width: 500px) {
  .jbox-notice .jbox-content {
    padding: 8px 10px; }
  .jbox-notice .jbox-title {
    padding: 8px 10px 0; }
  .jbox-hastitle.jbox-notice .jbox-content {
    padding-top: 0; } }

/* jbox theme: noticefancy */
.jbox-noticefancy .jbox-container {
  border-radius: 5px; }

.jbox-noticefancy .jbox-content,
.jbox-noticefancy .jbox-title {
  padding-left: 25px; }

.jbox-noticefancy.jbox-notice-color .jbox-container {
  color: #fff;
  background: #222;
  text-shadow: 0 -1px 0 #000; }

/* colored borders */
.jbox-noticefancy.jbox-notice-color .jbox-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8px;
  border-radius: 4px 0 0 4px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
  background-size: 14px 14px; }

.jbox-noticefancy.jbox-notice-black .jbox-container:after,
.jbox-noticefancy.jbox-notice-gray .jbox-container:after {
  background-color: #888; }

.jbox-noticefancy.jbox-notice-red .jbox-container:after {
  background-color: #e00; }

.jbox-noticefancy.jbox-notice-green .jbox-container:after {
  background-color: #6c0; }

.jbox-noticefancy.jbox-notice-blue .jbox-container:after {
  background-color: #07d; }

.jbox-noticefancy.jbox-notice-yellow .jbox-container:after {
  background-color: #fb0; }

.jbox-noticefancy .jbox-countdown {
  left: 8px; }

.jbox-noticefancy .jbox-countdown,
.jbox-noticefancy .jbox-countdown_inner {
  border-radius: 0 3px 0 0; }

/* jbox theme: tooltipborder */
.jbox-tooltipborder .jbox-container {
  border-radius: 5px;
  border: 2px solid #49d; }

/* pointer */
.jbox-tooltipborder .jbox-pointer:after {
  border: 2px solid #49d; }

.jbox-tooltipborder .jbox-pointer-top,
.jbox-tooltipborder .jbox-pointer-bottom {
  width: 34px;
  height: 13px; }

.jbox-tooltipborder .jbox-pointer-left,
.jbox-tooltipborder .jbox-pointer-right {
  width: 13px;
  height: 34px; }

/* close button */
.jbox-tooltipborder.jbox-closebutton-box:before {
  width: 28px;
  height: 28px;
  background: #49d; }

/* jbox theme: tooltipborderthick */
.jbox-tooltipborderthick .jbox-container {
  box-shadow: none;
  border-radius: 8px;
  border: 4px solid #ccc; }

/* pointer */
.jbox-tooltipborderthick .jbox-pointer:after {
  box-shadow: none;
  border: 4px solid #ccc; }

.jbox-tooltipborderthick .jbox-pointer-top,
.jbox-tooltipborderthick .jbox-pointer-bottom {
  width: 38px;
  height: 13px; }

.jbox-tooltipborderthick .jbox-pointer-left,
.jbox-tooltipborderthick .jbox-pointer-right {
  width: 13px;
  height: 38px; }

/* close button */
.jbox-tooltipborderthick.jbox-closebutton-box:before {
  width: 32px;
  height: 32px;
  background: #ccc; }

/* jbox theme: tooltipdark */
.jbox-tooltipdark .jbox-container {
  border-radius: 3px;
  background: #000;
  color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4); }

/* pointer */
.jbox-tooltipdark .jbox-pointer:after {
  background: #000; }

/* close button */
.jbox-tooltipdark .jbox-closebutton {
  background: #000; }

.jbox-tooltipdark.jbox-closebutton-box:before {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4); }

.jbox-tooltipdark.jbox-closebutton-box .jbox-closebutton path {
  fill: #ddd; }

.jbox-tooltipdark.jbox-closebutton-box .jbox-closebutton:hover path {
  fill: #fff; }

.jbox-tooltipdark.jbox-closebutton-box .jbox-closebutton:active path {
  fill: #bbb; }

/* jbox theme: tooltiperror */
.jbox-tooltiperror {
  pointer-events: none; }

.jbox-tooltiperror .jbox-content {
  padding: 0 10px;
  line-height: 28px; }

.jbox-tooltiperror .jbox-container {
  border-radius: 2px;
  background: #d00;
  color: #fff;
  font-weight: bold;
  font-size: 13px; }

.jbox-tooltiperror .jbox-pointer-top,
.jbox-tooltiperror .jbox-pointer-bottom {
  width: 22px;
  height: 8px; }

.jbox-tooltiperror .jbox-pointer-right,
.jbox-tooltiperror .jbox-pointer-left {
  width: 8px;
  height: 22px; }

.jbox-tooltiperror .jbox-pointer:after {
  background: #d00;
  width: 20px;
  height: 20px; }

.jbox-tooltiperror .jbox-pointer-top:after {
  left: 1px;
  top: 6px; }

.jbox-tooltiperror .jbox-pointer-bottom:after {
  left: 1px;
  bottom: 6px; }

.jbox-tooltiperror .jbox-pointer-right:after {
  top: 1px;
  right: 6px; }

.jbox-tooltiperror .jbox-pointer-left:after {
  top: 1px;
  left: 6px; }

/* jbox theme: tooltipsmall */
.jbox-tooltipsmall {
  pointer-events: none; }

.jbox-tooltipsmall .jbox-content {
  padding: 0 10px;
  line-height: 28px; }

.jbox-tooltipsmall .jbox-container {
  border-radius: 2px; }

.jbox-tooltipsmall .jbox-pointer-top,
.jbox-tooltipsmall .jbox-pointer-bottom {
  width: 22px;
  height: 8px; }

.jbox-tooltipsmall .jbox-pointer-right,
.jbox-tooltipsmall .jbox-pointer-left {
  width: 8px;
  height: 22px; }

.jbox-tooltipsmall .jbox-pointer:after {
  width: 20px;
  height: 20px; }

.jbox-tooltipsmall .jbox-pointer-top:after {
  left: 1px;
  top: 6px; }

.jbox-tooltipsmall .jbox-pointer-bottom:after {
  left: 1px;
  bottom: 6px; }

.jbox-tooltipsmall .jbox-pointer-right:after {
  top: 1px;
  right: 6px; }

.jbox-tooltipsmall .jbox-pointer-left:after {
  top: 1px;
  left: 6px; }

/* jbox theme: tooltipsmall */
.jbox-tooltipsmallgray {
  pointer-events: none; }

.jbox-tooltipsmallgray .jbox-content {
  padding: 0 10px; }

.jbox-tooltipsmallgray .jbox-container {
  font-size: 13px;
  line-height: 24px;
  border-radius: 12px;
  background-image: linear-gradient(to bottom, #fafafa, #f2f2f2); }

.jbox-tooltipsmallgray .jbox-pointer-top,
.jbox-tooltipsmallgray .jbox-pointer-bottom {
  width: 22px;
  height: 8px; }

.jbox-tooltipsmallgray .jbox-pointer-right,
.jbox-tooltipsmallgray .jbox-pointer-left {
  width: 8px;
  height: 22px; }

.jbox-tooltipsmallgray .jbox-pointer:after {
  width: 20px;
  height: 20px; }

.jbox-tooltipsmallgray .jbox-pointer-top:after {
  background: #fafafa;
  left: 1px;
  top: 6px; }

.jbox-tooltipsmallgray .jbox-pointer-bottom:after {
  background: #f2f2f2;
  left: 1px;
  bottom: 6px; }

.jbox-tooltipsmallgray .jbox-pointer-right:after {
  top: 1px;
  right: 6px; }

.jbox-tooltipsmallgray .jbox-pointer-left:after {
  top: 1px;
  left: 6px; }

/*# sourcemappingurl=jbox.all.css.map */
