.field {
  position: relative;
  margin: 20px 0 5px;
}
.field-row {
  display: -webkit-box;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 30px
}
.required:after {
  content:" *";
}
.field input,
.field textarea,
.field .html-input {
  background: none;
  color: #9e9e9e;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #9e9e9e;
  font-family: 'Akrobat', sans-serif;
}
.field input:focus,
.field textarea:focus,
.field .html-input:focus {
  outline: none;
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  top: -14px;
  font-size: 12px;
  color: #000000;
}
.field input:focus ~ .bar:before,
.field textarea:focus ~ .bar:before,
.field .html-input:focus ~ .bar:before {
  width: 100%;
}
.field input::-webkit-input-placeholder,
.field textarea::-webkit-input-placeholder {
  color: transparent;
}
.field input[required]::after {
  content: '*';
  position: absolute;
  top: 5px;
  right: 5px;
}
.field textarea {
  resize: none;
}
.field input[type="password"] {
  letter-spacing: 0.3em;
}
.field label {
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
}
.field .bar {
  position: relative;
  display: block;
  width: 100%;
}
.field .bar:before {
  content: "";
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #000000;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  left: 0%;
}
/* checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkbox span {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  color: #9e9e9e;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox input+span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 2px solid #9e9e9e;
    border-radius: 1px;
    margin-top: 3px;
    -webkit-transition: .2s;
    transition: .2s;
}
.checkbox input:checked+span:before {
    top: -4px;
    left: -5px;
    width: 12px;
    height: 22px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.btn {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  background: #000000;
  color: #FFFFFF;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.4px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  transform: translate3d(0, 0, 0) perspective(1px);
  z-index: 1;
}
.btn:hover {
  /*transform: perspective(1px) scale(1.1);
  z-index: 5;
  */
}
.btn.disabled {
  z-index: 1;
  background:  #b0bec5;
}
.btn.disabled:hover {
  z-index: 1;
  transform: translate3d(0, 0, 0) perspective(1px);
}

.public-input {

}
.public-values {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 40px;
}
.public-values p {
  position: relative;
}
.public-values span {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid rgba(0,0,0,0);
  cursor: pointer;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1)
}
.public-values input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.public-values input:checked+span {
  color: #000000;
  border-color: #000000;
}
.date-input-box {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
}
.date-input-box .checkbox span{
  padding-left: 50px;
  margin-left: 15px;
}
.number-input {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* Image */
.image-input {
  position: relative;
  display: block;
  width: 100%;
  background-color: rgba(0,0,0,0.1);
}
.image-box {
  display: block;
  width: 100%;
  height: 150px;
  cursor: pointer;
}
.image-box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}
.image-placeholder {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.selected-option {
  position: relative;

  color: #9e9e9e;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #9e9e9e;
}
.selected-option svg {
  fill: #000000;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  transition: fill 300ms linear;
}
.options-container {
  list-style: none;
  margin: 0;
  padding: 0;
}
.options-container li {
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.options-container li a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  cursor: pointer;

}
.options-container li a:hover,
.options-container li a.selected {
  color: #FFF;
}
.options-enter-active, .options-leave-active {
  transition: height 150ms ease;
}

.options-enter, .options-leave-to {
  height: 0px;
}
.switch {
  display: -webkit-box;
  display: flex;
  min-height: 48px;
  margin-bottom: 30px;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;

  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.switch[disabled] {
  pointer-events: none;
  opacity: 0.4;
}

.switch--input {
  position: absolute;
  opacity: 0;
}

.switch--text {
  margin-left: 1rem;
}

.switch--track {
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
  -webkit-box-align: center;
          align-items: center;
  width: 48px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  box-sizing: border-box;
  -webkit-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-property: background-color;
  transition-property: background-color;
}
.switch--input:checked ~ .switch--track {
  background-color:  #5faee3;

}

.switch--button {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background-color: #fff;
  -webkit-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-property: box-shadow, -webkit-transform;
  transition-property: box-shadow, -webkit-transform;
  transition-property: transform, box-shadow;
  transition-property: transform, box-shadow, -webkit-transform;
  will-change: transform, box-shadow;
}
.switch--button, .switch--input:active ~ .switch--track .switch--button {
  box-shadow: rgba(0, 0, 0, 0.1) 0 -1px 1px inset, rgba(0, 0, 0, 0.3) 0 1px 3px;
}
.switch:hover .switch--button, .switch--input:focus ~ .switch--track .switch--button {
  box-shadow: rgba(0, 0, 0, 0.1) 0 -1px 3px inset, rgba(0, 0, 0, 0.3) 0 2px 6px;
}
.switch--input:checked ~ .switch--track .switch--button {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
          background-color: #000000;
}
/* Radio */
.radio div {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.radio label {
  position: relative;
}
.radio label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.radio label span {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  border: 1px solid #737A93;
  cursor: pointer;
}
.radio label input:checked + span {
  color: #15FFCD;
  border-color: #15FFCD;
}
