.form {
  font-family: 'OpenSans', sans-serif;
  padding: 0 25px;
}
.group {
  position: relative;
  margin: 30px 0 15px;
}
.form-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 1px;
  color: #00D385;
}
.e-label {
  display: block;
  line-height: 1;
  padding-bottom: 10px;
  margin: 0
}
.group textarea {
  min-height: 100px;
  resize: vertical;
}

.group input,
.group textarea {
  background: none;
  color: #172333;
  font-size: 18px;
  padding: 10px 0 10px 0;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #172333;
  font-family: 'OpenSans', sans-serif;
}
.group input:focus,
.group textarea:focus {
  outline: none;
}
.group input:focus ~ label,
.group input:not(:placeholder-shown)  ~ label,
.group textarea:focus ~ label,
.group textarea:not(:placeholder-shown)  ~ label {
  top: -14px;
  font-size: 12px;
  color: #00D385;
}
.group input:focus ~ .bar:before,
.group textarea:focus ~ .bar:before {
  width: 100%;
}

.group input[type="password"] {
  letter-spacing: 0.3em;
}

.group label {
  color: #172333;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 10px;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
}

.html-input {
  position: relative;
  display: block;
}
.html-input p {
  padding: 10px 0;
  border-bottom: 1px solid #172333;
}
.html-input .bar.active:before {
  width: 100%;
}

.bar {
  position: relative;
  display: block;
  width: 100%;
}
.bar:before {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #00D385;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  left: 0%;
}

.btn {
  background: #fff;
  color: #00D385;
  border: none;
  padding: 15px 25px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  font-size: 18px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  font-family: 'OpenSans', sans-serif;
}
.btn:hover {
  color: #8b8b8b;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
}
.btn.btn-link {
  background: #00D385;
  color: #242730;
}
.btn.btn-link:hover {
  background: #0d8aee;
  color: #242730;
}
.btn.btn-submit {
  background: #00D385;
  color: #242730;
}
.btn.btn-submit:hover {
  background: #00f198;
  color: #242730;
}
.btn.btn-cancel {
  background: #eee;
}
.btn.btn-cancel:hover {
  background: #e1e1e1;
  color: #8b8b8b;
}

.btn-box {
  text-align: center;
  margin: 50px 0;
}
::-webkit-input-placeholder { /* Edge */
  color: rgba(0,0,0,0);
}

:-ms-input-placeholder { /* Internet Explorer */
  color: rgba(0,0,0,0);
}

::placeholder {
  color: rgba(0,0,0,0);
}
.e-input {
  position: relative;
  margin: 30px 0 15px;
}
/* Image */
.image-input {
  position: relative;
  display: block;
  width: 100%;

}
.image-box {
  display: block;
  width: 100%;
  height: 150px;
  cursor: pointer;
  background-color: rgba(0,0,0,0.1);
}
.image-box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}
.image-box video {
  height: 100%;
  width: 100%;
}
.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;
}
/* Color */

.color-input {
  display: flex;
  display: -webkit-flex;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.color-input input[type="color"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 60px;
  padding: 0;
  margin: 0;
  width: 60px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}
.color-label {
  padding: 0 15px;
}
.color-value {
  font-size: 18px;
}
.color-label p {
  line-height: 1.2;
  margin: 5px 0;
  padding: 0;
}
.color-input *:focus{
  border-radius: 50%;
  outline: none;
}
.color-input ::-webkit-color-swatch-wrapper {
  padding: 0;
}
.color-input ::-webkit-color-swatch{
  border: 0;
  border-radius: 50%;
}
.color-input ::-moz-color-swatch,
.color-input ::-moz-focus-inner{
  border: 0;
}
.color-input ::-moz-focus-inner{
  padding: 0;
}
/* Radio */
.radio div {
  position: relative;
  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: 40px;
  line-height: 40px;
  padding: 0 15px;
  border: 1px solid #737A93;
  cursor: pointer;
}
.radio label input:checked + span {
  color: #15FFCD;
  border-color: #15FFCD;
}
.radio-list {
  list-style: none;
}
.radio-list li {
  display: block;
  position: relative;
  width: 100%;
  height: 50px;
	border-top: 1px solid rgba(0,0,0,0.1);
}
.radio-list li input[type=radio]{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0
}
.radio-list li span {
  display: block;
  position: relative;
  font-weight: 300;
  padding: 10px 10px 10px 50px;
  font-size: 18px;
  height: 30px;
  line-height: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  pointer-events: none;
}
.radio-list li .check{
  display: block;
  position: absolute;
  border: 5px solid rgba(0,0,0,0.5);
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 10px;
  left: 0;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
  pointer-events: none;
}
.radio-list li .check::before {
  position: absolute;
	content: '';
  border-radius: 100%;
  height: 5px;
  width: 5px;
  top: 5px;
	left: 5px;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
  pointer-events: none;
}
.radio-list input[type=radio]:checked ~ .check {
  border: 5px solid #00D385;
}
.radio-list input[type=radio]:checked ~ .check::before{
  background: #00D385;
}


.theme-input ul {
  list-style: none;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.theme-input ul li {
  margin-right: 5px;
}
.theme-input ul li a {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  font-weight: bold;
  border: 2px solid #737A93;
  cursor: pointer;
}
.theme-input ul a.active {
  color: #00D385;
  border-color: #00D385;
}

.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 {
  background-color: rgba(0,0,0,0.1);
}
.options-enter-active, .options-leave-active {
  transition: height 150ms ease;
}

.options-enter, .options-leave-to {
  height: 0px;
}

/* checkbox */
.check-list {
  position: relative;
}
.check-list p {
  position: relative;
  display: block;
  height: 30px;

}
.checkbox {
  position: relative;
  pointer-events: auto;
  color: #000000;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.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%;
}

.radio-switch {
  position: relative;
  display: inline-block;
  display: inline-flex;
  padding: 4px !important;
  border-radius: 24px;
  background-color: rgba(0,0,0,0.1);
}
.radio-switch__item {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.radio-switch__input {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;

}
.radio-switch__input label {
  position: relative;

}
.radio-switch__input:checked ~ span {
  background-color: #00D385;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);

}
.radio-switch__label span {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  pointer-events: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: bold;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.position-box {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  align-items: flex-end;
  align-content: flex-end;
}
.position-item {
  padding: 0 10px;

}
.position-item input {
  padding: 10px;
  width: 100%;
  background-color: rgba(0,0,0,0.1);
}
.position-btn {
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  background-color: #00D385;

}
.position-btn i {
  height: 50px;
  line-height: 50px;
}
