/* == Form == */
.wojo.form {
  position: relative;
  max-width: 100%;
}
/* == Labels == */
.wojo.form .field > label {
  display: block;
  margin: 0em 0em 0.5rem 0em;
  color: var(--body-color);
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase
}
.wojo.form .field label .icon.asterisk {
  font-size: .750em;
  vertical-align: middle;
  color: var(--alert-color);
}
/* == Inputs == */
.wojo.form textarea,
.wojo.file > input,
.wojo.form input:not([type]),
.wojo.form input[type="date"],
.wojo.form input[type="datetime-local"],
.wojo.form input[type="email"],
.wojo.form input[type="number"],
.wojo.form input[type="password"],
.wojo.form input[type="search"],
.wojo.form input[type="tel"],
.wojo.form input[type="time"],
.wojo.form input[type="text"],
.wojo.form input[type="url"] {
  width: 100%;
  font-family: inherit;
  margin: 0em;
  outline: none;
  -webkit-appearance: none;
  tap-highlight-color: rgba(255, 255, 255, 0);
  line-height: normal;
  vertical-align:middle;
  padding: .875rem 1.5rem;
  font-size: 1rem;
  height: calc(1.750rem + 1rem + 2px);
  background: #fff;
  border: 0px solid var(--grey-color-300);
  color: var(--body-color);
  border-radius: .250rem;
  font-weight: 400;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
  transition: all 0.15s ease 0s;
}
.wojo.form textarea:not([rows]) {
  height: 12em;
  min-height: 8em;
  max-height: 24em;
}
.wojo.form input.basic {
  border: 1px solid rgba(255, 255, 255, 0);
  border-bottom-color: var(--grey-color-500);
  background: rgba(255, 255, 255, 0);
  border-radius: 0;
  padding: 1rem 0;
}
/* == Focus == */
.wojo.form textarea:focus,
.wojo.form input:not([type]):focus,
.wojo.form input[type="date"]:focus,
.wojo.form input[type="datetime-local"]:focus,
.wojo.form input[type="email"]:focus,
.wojo.form input[type="number"]:focus,
.wojo.form input[type="password"]:focus,
.wojo.form input[type="search"]:focus,
.wojo.form input[type="tel"]:focus,
.wojo.form input[type="time"]:focus,
.wojo.form input[type="text"]:focus,
.wojo.form input[type="url"]:focus,
.wojo.form input[type="text"]:focus,
.wojo.form select:focus {
  color: var(--dark-color);
  border-color: var(--primary-color);
  border-radius: 0.250rem;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234,.5);
}
.wojo.form textarea.basic:focus,
.wojo.form input.basic:not([type]):focus,
.wojo.form input.basic[type="date"]:focus,
.wojo.form input.basic[type="datetime-local"]:focus,
.wojo.form input.basic[type="email"]:focus,
.wojo.form input.basic[type="number"]:focus,
.wojo.form input.basic[type="password"]:focus,
.wojo.form input.basic[type="search"]:focus,
.wojo.form input.basic[type="tel"]:focus,
.wojo.form input.basic[type="time"]:focus,
.wojo.form input.basic[type="text"]:focus {
  color: var(--dark-color);
  border: 1px solid rgba(255, 255, 255, 0);
  border-bottom-color: var(--primary-color);
  background: rgba(255, 255, 255, 0);
  border-radius: 0;
  box-shadow: none;
}
/* == Placeholder == */
.wojo.form ::-webkit-input-placeholder {
 color: var(--grey-color-500);
}
.wojo.form :-ms-input-placeholder {
 color: var(--grey-color-500);
}
.wojo.form ::-moz-placeholder {
 color: var(--grey-color-500);
}
.wojo.form :focus::-webkit-input-placeholder {
 color: var(--grey-color-700);
}
.wojo.form :focus:-ms-input-placeholder {
 color: var(--grey-color-700);
}
.wojo.form :focus::-moz-placeholder {
 color: var(--grey-color-700);
}
.wojo.form input:-webkit-autofill {
 box-shadow: 0px 0px 0px 100px #fff inset;
 border-color: #fff;
}
.wojo.form input:-webkit-autofill:focus {
 box-shadow: 0px 0px 0px 100px #fff inset;
 border-color: #fff;
}
/* == Select == */
.wojo.form select {
  font-family: inherit;
  display: inline-block;
  width: 100%;
  color: var(--dark-color);
  line-height: 1rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  height: calc(1.875rem + 1rem);
  border: 0px solid var(--grey-color-300);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23212529' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 1rem center;
  background-size: auto auto;
  background-size: 8px 10px;
  border-radius: 0.250rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.wojo.form select.basic {
  border: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid var(--grey-color-500);
  border-radius: 0;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0);
}
.wojo.form select:focus {
  box-shadow: 0 0 0 3px rgba(102, 126, 234,.5);
}
.wojo.form select option {
  font-size: .913rem;
}
/* == File Upload == */
.wojo.file {
  display: flex;
  flex-flow: row wrap;
  position: relative;
}
.wojo.file > input,
.wojo.file > div {
  flex: 1 1 0px;
  min-width: 0;
}
.wojo.file > div {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.wojo.file > div .label {
  position: absolute;
  right: .5rem;
  top: 50%;
  font-size: .750rem;
  width: 1rem;
  height: 1rem;
  font-weight: 500;
  border-radius: .250rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--dark-color-shadow);
  box-shadow: 1px 1px 0 0 rgba(255,255,255,0.1);
}
/* == Checkbox == */
.wojo.checkbox {
  position: relative;
  padding: 0 0 0 2.5rem;
  text-align: left;
  line-height: 1;
  margin-bottom: 1.5em;
}
.wojo.checkbox.inline {
  display: inline-flex;
  margin-right: 1.5em;
}
.wojo.checkbox.inline > * {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  max-width: 100%;
}
.wojo.checkbox label {
  cursor: pointer;
  color: var(--grey-color-500);
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wojo.checkbox label::before,
.wojo.checkbox label::after {
  content: '';
  position: absolute;
  top: 50%;
}
.wojo.checkbox.radio label::before,
.wojo.checkbox.radio label::after {
  border-radius: 50%;
}
.wojo.checkbox label::before {
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff;
  border: 2px solid var(--grey-color-300);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wojo.checkbox label::after {
  left: .1250rem;
  width: 1rem;
  height: 1rem;
  margin: -.5rem 0 0;
  opacity: 0;
  background: var(--primary-color);
  -webkit-transform: translate3d(-20px, 0, 0) scale(0.5);
  transform: translate3d(-20px, 0, 0) scale(0.5);
  transition: all .35s ease;
}
.wojo.checkbox.radio label::before {
  width: 1.5rem;
  height: 1.5rem;
}
.wojo.checkbox.radio label::after {
  left: .250rem;
}
.wojo.checkbox.small label::before {
  width: 1rem;
  height: 1rem;
}
.wojo.checkbox.small label::after {
  width: 0.75rem;
  height: 0.75rem;
  margin: -.35rem 0 0;
}
.wojo.checkbox input[type="radio"],
.wojo.checkbox input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: -9999px;
  visibility: hidden;
}
.wojo.checkbox input[type="radio"]:checked + label:after,
.wojo.checkbox input[type="checkbox"]:checked + label:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: all .20s ease;
}
/* == Toggle == */
.wojo.toggle.checkbox {
  padding: 0 0 0 3.5rem;
}
.wojo.toggle.checkbox label::before,
.wojo.toggle.checkbox label::after {
  content: "";
  position: absolute;
  margin: 0;
  outline: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}
.wojo.toggle.checkbox label::before {
  left: 0;
  width: 2.5rem;
  height: .875rem;
  background-color: var(--grey-color-300);
  border-radius: .5rem;
  border: 0;
}
.wojo.toggle.checkbox label::after {
  left: 0;
  opacity: 1;
  width: 1.250rem;
  height: 1.250rem;
  background-color: #fff;
  border: 1px solid var(--grey-color-300);
  border-radius: 50%;
  box-shadow: 0 3px 6px -2px rgba(0, 0, 0, 0.1);
}
.wojo.toggle.checkbox input[type="radio"]:checked + label:before,
.wojo.toggle.checkbox input[type="checkbox"]:checked + label:before {
  background-color: var(--primary-color);
}
.wojo.toggle.checkbox input[type="radio"]:checked + label:after,
.wojo.toggle.checkbox input[type="checkbox"]:checked + label:after {
  border-color: var(--primary-color);
  -webkit-transform: translate(90%, -50%);
  transform: translate(90%, -50%);
}
.wojo.checkbox input[type="radio"]:checked + label,
.wojo.checkbox input[type="checkbox"]:checked + label {
  color: var(--body-color)
}
.wojo.checkbox.fitted {
  margin-bottom: 0
}
/* == Image Select == */
.wavatar-dropzone {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--grey-color-300);
  border-radius: .250rem;
  padding: 0px;
  margin: 0 auto;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.wavatar-dropzone > div {
  flex: 1 1 0px;
  min-width: 0;
  cursor: pointer;
}
.wavatar-dropzone img {
  max-width: 150px;
  max-height: 150px;
  vertical-align: middle;
  border-radius: .250em;
  z-index: 3
}
.wavatar-dropzone [type="file"] {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0
}
.wavatar-focus,
.wavatar-dropzone:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: 0 3px 9px var(--shadow-color), 3px 4px 8px var(--shadow-color);
}
.wavatar-accept {
  color: var(--positive-color);
  border: 1px solid var(--positive-color);
}
.wavatar-enter {
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.wavatar-reject {
  color: var(--negative-color);
  border: 1px solid var(--negative-color);
}
/* == Color Picker == */
.wojo.color.picker {
  background: #fff;
  position: absolute;
  border-radius: .250rem;
  border: 1px solid var(--grey-color-300);
  box-shadow: 0 50px 100px rgba(50,50,93,.1), 0 15px 35px rgba(50,50,93,.15), 0 5px 15px rgba(0,0,0,.1);
  padding: 1rem;
  z-index: 1500;
  transition: all linear .2s;
}
.wojo.color.picker h5 {
  font-size: .750rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--body-color);
  margin-bottom: .5rem;
}
.wojo.color.picker .items {
  display: flex;
  flex-flow: row wrap;
  margin-left: -.250rem;
}
.wojo.color.picker .wojo.mini.input {
  margin: .5rem 0;
}
.wojo.color.picker .row {
  margin-top: 1rem;
}
.wojo.color.picker .wojo.mini.input.error {
  border: 1px solid var(--negative-color);
}
.wojo.color.picker .wojo.mini.input.error input {
  color: var(--negative-color);
}
.wojo.color.picker .items .item {
  border-radius: .250rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  flex: 1 1 0px;
  min-width: 0;
  margin-left: .250rem;
  margin-bottom: .250rem;
}
.wojo.color.picker .items .item:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.wojo.color.picker .button[data-close] {
  position: absolute;
  right: 0;
  top: 0
}
.wojo.color.picker .colorPickDummy {
  background: #fff;
  border: 1px dashed var(--grey-color-300);
}
/* == Date Picker == */
.wojo.calendar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  background-color: transparent;
  transition: background-color .2s linear, opacity .2s ease;
  z-index: 1200;
  overflow: hidden;
}
.wojo.calendar.active {
  visibility: visible;
  opacity: 1;
  background-color: rgba(0,0,0,0.75);
}
.wojo.calendar.inactive {
  opacity: 0;
  background-color: transparent;
}
.wojo.calendar .container {
  line-height: normal;
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 50%;
  bottom: 2rem;
  min-width: 280px;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: .250rem;
  -webkit-transform: translateX(-50%) scale(1.05) perspective(1px);
  transform: translateX(-50%) scale(1.05) perspective(1px);
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  transition: opacity .25s ease, -webkit-transform .25s ease;
  transition: transform .25s ease, opacity .25s ease;
  transition: transform .25s ease, opacity .25s ease, -webkit-transform .25s ease;
}
.wojo.calendar.active .container {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
}
.wojo.calendar .header {
  padding: 1.5rem;
  color: #fff;
  background-color: var(--primary-color);
}
.wojo.calendar .header .current.year {
  display: block;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
}
.wojo.calendar .header .current.year:hover {
  color: #fff;
}
.wojo.calendar .header .current.date {
  font-size: 1.875rem;
  font-weight: 300;
}
.wojo.calendar .content {
  position: relative;
  background-color: #fff;
  width: 400px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 0 1 auto;
}
.wojo.calendar .content .prev.link,
.wojo.calendar .content .next.link {
  position: absolute;
  top: .5rem;
  left: .875rem;
  display: block;
  text-align: center;
  line-height: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  border-radius: .250rem;
  opacity: 1;
  transition: opacity .25s ease, background-color .25s linear;
  z-index: 2;
}
.wojo.calendar .content .next.link {
  left: auto;
  right: .875rem;
}
.wojo.calendar .content .prev.link:hover,
 .wojo.calendar .content .next.link:hover {
  background-color: var(--grey-color-300);
}
.wojo.calendar .content .prev.link:active,
 .wojo.calendar .content .next.link:active {
  background-color: var(--grey-color-500);
}
.wojo.calendar .content .views {
  width: 1200px;
  overflow: hidden;
  opacity: 1;
  transition: opacity .25s ease;
  display: flex;
  flex-flow: row wrap;
}
.wojo.calendar .content .sections {
  padding: 0 1rem .750rem;
  -webkit-transform: translateX(-100%) perspective(1px);
  transform: translateX(-100%) perspective(1px);
  transition: none;
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
}
.wojo.calendar .content .sections.animate-left {
  -webkit-transform: translateX(-200%);
  transform: translateX(-200%);
  transition: -webkit-transform .25s cubic-bezier(0.4, 0.0, 0.2, 1);
  transition: transform .25s cubic-bezier(0.4, 0.0, 0.2, 1);
  transition: transform .25s cubic-bezier(0.4, 0.0, 0.2, 1), -webkit-transform .25s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.wojo.calendar .content .sections.animate-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: -webkit-transform .25s cubic-bezier(0.4, 0.0, 0.2, 1);
  transition: transform .25s cubic-bezier(0.4, 0.0, 0.2, 1);
  transition: transform .25s cubic-bezier(0.4, 0.0, 0.2, 1), -webkit-transform .25s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.wojo.calendar .sections .heading {
  text-align: center;
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 1rem 0;
}
.wojo.calendar .sections .weekdays {
  display: flex;
  flex-direction: row;
  margin-bottom: .5rem;
  background-color: var(--grey-color-100);
  padding: .5rem 0;
  border-top: 1px solid var(--grey-color-300);
  border-bottom: 1px solid var(--grey-color-300);
}
.wojo.calendar .sections .weekdays span {
  text-align: center;
  font-size: .750rem;
  flex: 0 0 Calc(100% / 7);
  max-width: Calc(100% / 7);
  font-weight: 700;
}
.wojo.calendar .sections .week {
  display: flex;
  flex-direction: row;
}
.wojo.calendar .sections .week .item {
  flex: 0 0 Calc(100% / 7);
  max-width: Calc(100% / 7);
  text-decoration: none;
  text-align: center;
  font-size: .875rem;
  outline: none;
  cursor: pointer;
  padding: 1.125rem .5rem;
  line-height: 1rem;
  position: relative;
  transition: background-color .2s linear;
}
.wojo.calendar .sections .week .pm,
.wojo.calendar .sections .week .nm {
  color: var(--grey-color-500);
}
.sections .week .item.disabled {
  cursor: not-allowed;
  color: var(--grey-color-500);
}
.wojo.calendar .sections .week .item:not(.disabled):not(.selected):hover {
  background-color: var(--grey-color-300);
}
.wojo.calendar .sections .week .item:not(.disabled):not(.selected):active {
  background-color: var(--grey-color-500);
}
.wojo.calendar .sections .week .item.current {
  color: var(--primary-color);
  background-color: var(--grey-color-300);
  font-weight: 500;
}
.wojo.calendar .sections .week .item.pm,
.dudp__cal-dates .item.nm {
  color: var(--grey-color-500);
}
.wojo.calendar .sections .week .item.selected {
  font-weight: normal;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: .250rem;
}
.wojo.calendar .sections .week .item.selected::before,
.wojo.calendar .months .month.selected::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 6px solid #fff;
  border-left: 6px solid transparent;
}
.wojo.calendar .content .months {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  opacity: 1;
  -webkit-transform: scale(1) perspective(1px);
  transform: scale(1) perspective(1px);
  transition: opacity .25s ease, -webkit-transform .25s ease;
  transition: transform .25s ease, opacity .25s ease;
  transition: transform .25s ease, opacity .25s ease, -webkit-transform .25s ease;
}
.wojo.calendar .months .month-row {
  display: flex;
  flex-direction: row;
}
.wojo.calendar .months .month {
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  border-radius: .250rem;
  padding: 1rem;
  position: relative;
  transition: background-color .2s linear;
}
.wojo.calendar .months .month:hover {
  background-color: var(--grey-color-300);
}
.wojo.calendar .months .month:active {
  background-color: var(--grey-color-500);
}
.wojo.calendar .months .month.selected {
  font-weight: 500;
  color: #fff;
  background-color: var(--primary-color);
}
.wojo.calendar .content .years {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 1;
  transition: opacity .25s ease;
  overflow-y: scroll;
  overflow-x: hidden;
}
.wojo.calendar .years .year {
  display: block;
  padding: .5rem 0;
  text-align: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color .2s linear;
}
.wojo.calendar .years .year:hover {
  background-color: var(--grey-color-300);
}
.wojo.calendar .years .year:active {
  background-color: var(--grey-color-500);
}
.wojo.calendar .years .year.selected {
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
  background-color: var(--primary-color);
}
.wojo.calendar .content .actions {
  padding: 0 .875rem .875rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.wojo.calendar .content .actions .button {
  font-size: .875rem;
  padding: 0 1rem;
  min-width: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  line-height: 2rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--primary-color);
  border-radius: .250rem;
  border: 0;
  background-color: #fff;
  transition: background-color .2s linear;
}
.wojo.calendar .content .actions .button.clear {
  color: var(--negative-color);
}
.wojo.calendar .content .actions .button.today {
  color: var(--positive-color);
}
.wojo.calendar .content .actions .button:hover {
  background-color: var(--grey-color-300);
}
.wojo.calendar .content .actions .button:active {
  background-color: var(--grey-color-500);
}
.wojo.calendar .content .months.is-hidden,
.wojo.calendar .content .prev.link.is-hidden,
 .wojo.calendar .content .next.link.is-hidden,
 .wojo.calendar .content .views.is-hidden,
 .wojo.calendar .content .years.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.wojo.calendar .content .months.is-out {
  opacity: 0;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.wojo.calendar .content .views.is-out {
  opacity: 0;
}
body[datepicker-display='on'] {
  overflow: hidden;
}
/* == Time Picker == */
.wojo.time.picker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.75);
  transition: background-color .28s ease;
  z-index: 1200;
}
.wojo.time.picker.hidden {
  display: none;
}
.wojo.time.picker.animate {
  background-color: transparent;
}
.wojo.time.picker .container {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 50%;
  bottom: 24px;
  min-width: 280px;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: .250rem;
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  transition: opacity .28s ease, -webkit-transform .28s ease;
  transition: transform .28s ease, opacity .28s ease;
  transition: transform .28s ease, opacity .28s ease, -webkit-transform .28s ease;
  overflow: hidden;
}
.wojo.time.picker .container.animate {
  -webkit-transform: translateX(-50%) scale(1.05);
  transform: translateX(-50%) scale(1.05);
  opacity: 0;
}
.wojo.time.picker .header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  padding: 1.5rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  background-color: var(--primary-color);
}
.wojo.time.picker .header > span {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  line-height: 3rem;
  cursor: default;
}
.wojo.time.picker .header > span:not(.separator):not(.ampm) {
  cursor: pointer;
  margin: 0 .250rem;
}
.wojo.time.picker .header .hour.active,
.wojo.time.picker .header .minute.active {
  color: #fff;
}
.wojo.time.picker .header .ampm {
  font-size: 1.5rem;
}
.wojo.time.picker .content {
  position: relative;
  padding: 1.5rem;
  background-color: #fff;
}
.wojo.time.picker .content .section {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 1.5rem;
  border-radius: .250rem;
}
.wojo.time.picker .content .section .button.am,
.wojo.time.picker .content .section .button.pm {
  position: absolute;
  bottom: 0;
  z-index: 3;
}
.wojo.time.picker .content .section .button.am {
  left: 0;
}
.wojo.time.picker .content .section .button.pm {
  right: 0;
}
.wojo.time.picker .content .section .dot {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: .375rem;
  background-color: var(--grey-color-300);
  border-radius: 50%;
}
.wojo.time.picker .content .section .hours,
.wojo.time.picker .content .section .minutes {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: opacity .35s ease, -webkit-transform .35s cubic-bezier(0.4, 0.0, 0.2, 1);
  transition: transform .35s cubic-bezier(0.4, 0.0, 0.2, 1), opacity .35s ease;
  transition: transform .35s cubic-bezier(0.4, 0.0, 0.2, 1), opacity .35s ease, -webkit-transform .35s cubic-bezier(0.4, 0.0, 0.2, 1);
  overflow: hidden;
}
.wojo.time.picker .content .section .hours.animate {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
}
.wojo.time.picker .content .section .minutes.animate {
  -webkit-transform: scale(.8);
  transform: scale(.8);
  opacity: 0;
}
.wojo.time.picker .content .section .hours.hidden,
.wojo.time.picker .content .section .minutes.hidden {
  display: none;
}
.wojo.time.picker .content .section .digit {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 0;
  margin-top: -1.5rem;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  z-index: 1;
}
.wojo.time.picker .content .section .digit span {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  line-height: 1.5rem;
  text-align: center;
  border-radius: .250rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color .28s, color .14s;
}
.wojo.time.picker .content .section .digit span small {
  line-height: 1rem;
  display: block;
  font-size: .750rem;
  font-weight: 400;
}
.wojo.time.picker .content .section .minutes .digit:not(.marker) {
  margin-top: -.5rem;
  height: .750rem;
}
.wojo.time.picker .content .section .minutes .digit:not(.marker) span {
  width: .5rem;
  height: .5rem;
  line-height: .5rem;
  margin-left: 2rem;
  background-color: var(--grey-color-300);
}
.wojo.time.picker .content .section .digit.active span,
.wojo.time.picker .content .section .minutes .digit.active:not(.marker) span,
.wojo.time.picker .content .section .minutes .digit:not(.marker) span:hover,
.wojo.time.picker .content .section .digit span:hover {
  background-color: var(--primary-color);
  color: #fff;
  z-index: 2;
  -webkit-transform: scale(1.75);
  transform: scale(1.75);
}
.wojo.time.picker .content .section .minutes .digit.marker {
  margin-top: -.750rem;
}
.wojo.time.picker .content .section .minutes .digit.marker span {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
}
.wojo.time.picker .actions {
  margin: 0 -1rem -1rem;
  text-align: right;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.wojo.time.picker .actions .button {
  font-size: .875rem;
  padding: 0 1rem;
  min-width: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  line-height: 2rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--primary-color);
  border-radius: .250rem;
  border: 0;
  background-color: #fff;
  transition: background-color .2s linear;
}
.wojo.time.picker .actions .button.cancel {
  color: var(--negative-color);
}
.wojo.time.picker .actions .button.now {
  color: var(--positive-color);
}
.wojo.time.picker .actions .button:hover {
  background-color: var(--grey-color-300);
}
.wojo.time.picker .actions .button:active {
  background-color: var(--grey-color-500);
}
body[timepicker-display='on'] {
  overflow: hidden;
}
/* == Range Slider == */
.wojo.range,
.wojo.range .fill {
  border-radius: .250rem;
}
.wojo.range {
  background: var(--grey-color-300);
  position: relative;
}
.wojo.range.horizontal {
  height: .5rem;
  width: 100%;
}
.wojo.range.vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
  height: 100%;
}
.wojo.range.disabled {
  opacity: 0.4;
}
.wojo.range .fill {
  background: var(--primary-color);
  position: absolute;
}
.wojo.range.horizontal .fill {
  top: 0;
  height: 100%;
}
.wojo.range.vertical .fill {
  bottom: 0;
  width: 100%;
}
.wojo.range .handle {
  cursor: pointer;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  background: #fff linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
  transition: background 0.3s ease;
  border-radius: 50%;
  z-index: 2;
}
.wojo.range .handle:active,
.wojo.range.active .handle {
  background: #fff
}
.wojo.range.horizontal .handle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.wojo.range.vertical .handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}
.wojo.range .counter {
  position: absolute;
  right: 0;
  top: -1.5rem;
  font-weight: 500;
  font-size: .750rem;
}
.wojo.range .labels {
  width: 100%;
  display: flex;
  padding-top: .5rem;
  justify-content: space-between;
  z-index: 1;
}
.wojo.range .labels .label {
  font-size: 0.75rem;
  font-weight: 500;
  position: relative;
  padding-top: .5rem;
}
.wojo.range .labels .label::before {
  content: "";
  height: .5em;
  width: 1px;
  background: var(--dark-color-shadow);
  position: absolute;
  top: 0;
  left: 50%;
}
.wojo.range .labels .label:first-child::before {
  left: 0;
}
.wojo.range .labels .label:last-child::before {
  right: 0;
  left: auto;
}
/* == Sizes == */
.wojo.small.range,
.wojo.small.range .fill {
  border-radius: .188rem;
}
.wojo.small.range.horizontal {
  height: .25rem;
}
.wojo.small.range .handle {
  width: 1rem;
  height: 1rem;
}
/* == Loading == */
.wojo.loading.form {
  position: relative;
  cursor: default;
  pointer-events: none;
}
.wojo.loading.form:before {
  position: absolute;
  content: '';
  top: 0%;
  left: 0%;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: 10;
}
.wojo.loading.form: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: rgba(0,0,0,.5) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
  border-style: solid;
  border-width: 0.2em;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0);
  visibility: visible;
  z-index: 11;
}
@-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);
}
}
/* == Editable == */
[data-editable=true] {
  position: relative;
}
[data-editable=true]::after {
  content: '';
  position: absolute;
  bottom: -.250rem;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 2px dashed var(--grey-color-500)
}
.wojo.editable {
  background-color: #fff;
  border: 0;
  -webkit-appearance: none;
  padding: .125rem 1rem!important;
  outline: var(--primary-color) solid 2px;
  outline-offset: 0px;
  box-shadow: 0 50px 100px rgba(50,50,93,.1), 0 15px 35px rgba(50,50,93,.15), 0 5px 15px rgba(0,0,0,.1);
}
/* == Fields == */
.wojo.fields {
  display: flex;
  flex-direction: row;
  margin-left: -2em;
}
.wojo.fields .field {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 2em;
  margin-bottom: 2em;
}
.wojo.fields .field.auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  white-space: nowrap;
}
.wojo.block.fields {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-left: 0;
  margin-bottom: 0;
}
.wojo.block.fields .field {
  flex: 0 1 auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  min-width: 0;
  padding-left: 0;
  margin-bottom: 2em;
}
.wojo.fields .field.labeled > label {
  margin-bottom: 0;
  text-align: right;
}
.wojo.fields .field > p {
  margin-top: 1rem;
}
.wojo.fields .field.one.wide {
  flex: 0 0 10%;
  max-width: 10%;
}
.wojo.fields .field.two.wide {
  flex: 0 0 20%;
  max-width: 20%;
}
.wojo.fields .field.three.wide {
  flex: 0 0 30%;
  max-width: 30%;
}
.wojo.fields .field.four.wide {
  flex: 0 0 40%;
  max-width: 40%;
}
.wojo.fields .field.five.wide {
  flex: 0 0 50%;
  max-width: 50%;
}
.wojo.fields .field.six.wide {
  flex: 0 0 60%;
  max-width: 60%;
}
.wojo.fields .field.seven.wide {
  flex: 0 0 70%;
  max-width: 70%;
}
.wojo.fields .field.eight.wide {
  flex: 0 0 80%;
  max-width: 80%;
}
.wojo.fields .field.nine.wide {
  flex: 0 0 90%;
  max-width: 90%;
}
.wojo.inline.fields {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.wojo.inline.fields .field {
  flex: 0 1 auto;
  margin-bottom: 0;
}
.wojo.small.fields {
  margin-left: -1em;
}
.wojo.small.fields .field {
  padding-left: 1em;
  margin-bottom: 1em;
}
.wojo.fields .basic.field {
  margin-bottom: 0;
}
/* == Disabled == */
.wojo.fields.disabled .field,
.wojo.fields .field :disabled {
  pointer-events: none;
  opacity: 0.45;
}
.wojo.fields .field.disabled label {
  opacity: 0.45;
}
.wojo.fields .field.disabled :disabled {
  opacity: 1;
}
/* == Sizes == */
.wojo.small.form textarea,
.wojo.small.form input:not([type]),
.wojo.small.form input[type="date"],
.wojo.small.form input[type="datetime-local"],
.wojo.small.form input[type="email"],
.wojo.small.form input[type="number"],
.wojo.small.form input[type="password"],
.wojo.small.form input[type="search"],
.wojo.small.form input[type="tel"],
.wojo.small.form input[type="time"],
.wojo.small.form input[type="text"],
.wojo.small.form input[type="file"],
.wojo.small.form input[type="url"] {
  line-height: .875rem;
  padding: 0 1.5rem;
  font-size: .875rem;
  height: calc(1.25rem + 1rem + 2px);
}
.wojo.small.form textarea:not([rows]),
.wojo.form textarea.small:not([rows]) {
  height: 6em;
  min-height: 4em;
  max-height: 12em;
  padding: 1rem 1.5rem;
}
.wojo.tiny.form textarea:not([rows]),
.wojo.form textarea.tiny:not([rows]) {
  height: 3.188em;
  min-height: 3.188em;
  max-height: 12em;
  padding: .5rem 1rem;
}
.wojo.small.form input.basic {
  padding: .875rem 0;
}
.wojo.small.fields .field {
  margin-bottom: 1rem;
}
.wojo.small.form .wojo.select > .counter,
.wojo.small.select > .counter,
.wojo.small.form select {
  height: calc(1.25rem + 1rem + 2px);
}
.wojo.small.form .wojo.select > .counter > span,
.wojo.small.select > .counter > span {
  font-size: .875rem;
  line-height: .875rem;
  padding: .750rem 1.5rem;
}
.wojo.small.form .wojo.select > .menu > .options li.item,
.wojo.small.select > .menu > .options li.item {
  font-size: .875rem;
}
.wojo.form {
  font-size: 1rem;
}

@media screen and (max-width:48.063em) {
.wojo.fields {
  display: flex;
  flex-direction: column;
  margin-left: 0;
}
.wojo.fields .field {
  flex: 0 1 auto;
  max-width: 100%;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  min-width: 0;
  padding-left: 0
}
.wojo.fields .field.one.wide,
.wojo.fields .field.two.wide,
.wojo.fields .field.three.wide,
.wojo.fields .field.four.wide,
.wojo.fields .field.five.wide,
.wojo.fields .field.six.wide,
.wojo.fields .field.seven.wide,
.wojo.fields .field.eight.wide,
.wojo.fields .field.nine.wide {
  flex: 0 0 100%;
  max-width: 100%;
}
.wojo.fields .field.labeled {
  margin-bottom: 0
}
.wojo.fields .field.labeled > label {
  text-align: left;
  margin-bottom: .5rem;
}
.wojo.inline.fields {
  flex-direction: row;
  align-items: center;
  margin-left: -2em;
}
.wojo.inline.fields .field {
  flex: 0 1 auto;
  padding-left: 2em;
}
}
