.checkbox-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkbox-slide input[type=checkbox],
.checkbox-slide input[type=radio] {
  display: none;
}

.checkbox-slide input[type=checkbox] + .for_style,
.checkbox-slide input[type=radio] + .for_style {
  outline: 0;
  display: block;
  width: 50px;
  height: 25px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 0;
  padding: 2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #fff;
  border: 3px solid #9f9f9f;
  border-radius: 50px;
}

.checkbox-slide input[type=checkbox] + .for_style:after, .checkbox-slide input[type=checkbox] + .for_style:before,
.checkbox-slide input[type=radio] + .for_style:after,
.checkbox-slide input[type=radio] + .for_style:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
}

.checkbox-slide input[type=checkbox] + .for_style:after,
.checkbox-slide input[type=radio] + .for_style:after {
  left: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #9f9f9f;
  content: "";
  border-radius: 1em;
}

.checkbox-slide input[type=checkbox] + .for_style:before,
.checkbox-slide input[type=radio] + .for_style:before {
  display: none;
}

.checkbox-slide input[type=checkbox] + .for_style .on,
.checkbox-slide input[type=radio] + .for_style .on {
  opacity: 0;
  position: absolute;
  left: 5px;
  top: 50%;
  font-size: 10px;
  -webkit-transform: translate(0, -57%);
          transform: translate(0, -57%);
  margin: 0;
  padding: 0;
  line-height: 1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #4a92fa;
  cursor: pointer;
}

.checkbox-slide input[type=checkbox] + .for_style .off,
.checkbox-slide input[type=radio] + .for_style .off {
  position: absolute;
  right: 3px;
  top: 50%;
  font-size: 10px;
  -webkit-transform: translate(0, -57%);
          transform: translate(0, -57%);
  margin: 0;
  padding: 0;
  line-height: 1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #9f9f9f;
  cursor: pointer;
}

.checkbox-slide input[type=checkbox]:checked + .for_style,
.checkbox-slide input[type=radio]:checked + .for_style {
  border-color: #4a92fa;
  background-color: #fff;
}

.checkbox-slide input[type=checkbox]:checked + .for_style:after,
.checkbox-slide input[type=radio]:checked + .for_style:after {
  left: 50%;
  background-color: #4a92fa;
}

.checkbox-slide input[type=checkbox]:checked + .for_style .on,
.checkbox-slide input[type=radio]:checked + .for_style .on {
  opacity: 1;
}

.checkbox-slide input[type=checkbox]:checked + .for_style .off,
.checkbox-slide input[type=radio]:checked + .for_style .off {
  opacity: 0;
}

.checkbox-slide input[type=checkbox]:checked + .for_style:disabled + .for_style,
.checkbox-slide input[type=radio]:checked + .for_style:disabled + .for_style {
  -webkit-filter: opacity(0.5);
          filter: opacity(0.5);
}

.checkbox-slide.green input[type=checkbox] + .for_style,
.checkbox-slide.green input[type=radio] + .for_style {
  border-color: #768396;
  background-color: #fff;
}

.checkbox-slide.green input[type=checkbox] + .for_style:after,
.checkbox-slide.green input[type=radio] + .for_style:after {
  background: #768396;
}

.checkbox-slide.green input[type=checkbox] + .for_style .on,
.checkbox-slide.green input[type=radio] + .for_style .on {
  color: #31C947;
}

.checkbox-slide.green input[type=checkbox] + .for_style .off,
.checkbox-slide.green input[type=radio] + .for_style .off {
  color: #768396;
}

.checkbox-slide.green input[type=checkbox]:checked + .for_style,
.checkbox-slide.green input[type=radio]:checked + .for_style {
  border-color: #31C947;
  background-color: #fff;
}

.checkbox-slide.green input[type=checkbox]:checked + .for_style:after,
.checkbox-slide.green input[type=radio]:checked + .for_style:after {
  background: #31C947;
}

.checkbox-sun {
  height: 30px;
  min-width: 30px;
  position: relative;
}

.checkbox-sun input[type=checkbox], .checkbox-sun input[type=radio] {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkbox-sun input[type=checkbox] + label, .checkbox-sun input[type=radio] + label {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 0px;
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: 3px solid #3E88FB;
  position: relative;
  border-radius: 50%;
}

.checkbox-sun input[type=checkbox]:checked + label, .checkbox-sun input[type=radio]:checked + label {
  background-color: transparent;
}

.checkbox-sun input[type=checkbox]:checked + label:before, .checkbox-sun input[type=radio]:checked + label:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: '';
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: #3E88FB;
}

.checkbox-sun.green {
  height: 30px;
  min-width: 30px;
}

.checkbox-sun.green input[type=checkbox] + label, .checkbox-sun.green input[type=radio] + label {
  background-color: transparent;
  border: 3px solid #30C747;
}

.checkbox-sun.green input[type=checkbox]:checked + label, .checkbox-sun.green input[type=radio]:checked + label {
  background-color: transparent;
}

.checkbox-sun.green input[type=checkbox]:checked + label:before, .checkbox-sun.green input[type=radio]:checked + label:before {
  content: '';
  height: 16px;
  width: 16px;
  background-color: #30C747;
}

.checkbox-group {
  position: relative;
  height: 30px;
  width: 30px;
}

.checkbox-group input[type=checkbox], .checkbox-group input[type=radio] {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkbox-group input[type=checkbox] + label, .checkbox-group input[type=radio] + label {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 0px;
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: 2px solid #3E88FB;
  position: relative;
  border-radius: 5px;
}

.checkbox-group input[type=checkbox] + label:before, .checkbox-group input[type=radio] + label:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: '';
  height: 20px;
  width: 20px;
  background-color: #9ca2a8;
  -webkit-mask: url("icon/check.svg") no-repeat 50% 50%;
  mask: url("icon/check.svg") no-repeat 50% 50%;
}

.checkbox-group input[type=checkbox]:checked + label, .checkbox-group input[type=radio]:checked + label {
  background-color: #3E88FB;
}

.checkbox-group input[type=checkbox]:checked + label:before, .checkbox-group input[type=radio]:checked + label:before {
  background-color: #FFF;
}

.checkbox-group.green {
  height: 30px;
  width: 30px;
}

.checkbox-group.green input[type=checkbox] + label, .checkbox-group.green input[type=radio] + label {
  background-color: transparent;
  border-color: #30C747;
}

.checkbox-group.green input[type=checkbox] + label:before, .checkbox-group.green input[type=radio] + label:before {
  height: 20px;
  width: 20px;
  background-color: #20262c11;
  -webkit-mask: url("icon/check.svg") no-repeat 50% 50%;
  mask: url("icon/check.svg") no-repeat 50% 50%;
}

.checkbox-group.green input[type=checkbox]:checked + label, .checkbox-group.green input[type=radio]:checked + label {
  background-color: #30C747;
}

.checkbox-group.green input[type=checkbox]:checked + label:before, .checkbox-group.green input[type=radio]:checked + label:before {
  background-color: #FFF;
}

.checkbox-group.white {
  height: 30px;
  width: 30px;
}

.checkbox-group.white input[type=checkbox] + label, .checkbox-group.white input[type=radio] + label {
  background-color: #DADBE0;
  border-color: #DADBE0;
}

.checkbox-group.white input[type=checkbox] + label:before, .checkbox-group.white input[type=radio] + label:before {
  height: 20px;
  width: 20px;
  background-color: #20262c11;
  -webkit-mask: url("icon/check.svg") no-repeat 50% 50%;
  mask: url("icon/check.svg") no-repeat 50% 50%;
}

.checkbox-group.white input[type=checkbox]:checked + label, .checkbox-group.white input[type=radio]:checked + label {
  background-color: #3E88FB;
  border-color: #3E88FB;
}

.checkbox-group.white input[type=checkbox]:checked + label:before, .checkbox-group.white input[type=radio]:checked + label:before {
  background-color: #FFF;
}

.live-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0;
}

.live-form .live-form-body {
  width: calc(100% - 45px);
}

.live-form .live-form-body.is_currency:before {
  width: 15px;
  height: 35px;
  position: absolute;
  content: attr(data-currency);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3a4248;
}

.live-form .live-form-body.is_currency .form-group .form {
  padding-left: 15px;
}

.live-form .live-form-body.is_currency .form-content {
  padding-left: 15px;
}

.live-form .live-form-body .form-group {
  display: none;
  margin: 0;
}

.live-form .live-form-body .form-group .form {
  width: 100%;
  min-height: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  line-height: 2em;
  border: none;
  border-bottom: 1px solid #d0d6dd;
  background-color: transparent;
  color: #3a4248;
  font-size: 16px;
  font-weight: 500;
}

.live-form .live-form-body .form-group .form:focus {
  outline: none;
  border-bottom: 1px solid #88B2F6;
  caret-color: #88B2F6;
}

.live-form .live-form-body .form-group .form::-webkit-input-placeholder {
  color: #a5aabe;
}

.live-form .live-form-body .form-group .form:-ms-input-placeholder {
  color: #a5aabe;
}

.live-form .live-form-body .form-group .form::-ms-input-placeholder {
  color: #a5aabe;
}

.live-form .live-form-body .form-group .form::placeholder {
  color: #a5aabe;
}

.live-form .live-form-body .form-group .form-textarea {
  float: left;
  line-height: 29px;
}

.live-form .live-form-body .form-group .form-number::-webkit-outer-spin-button, .live-form .live-form-body .form-group .form-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.live-form .live-form-body .form-group .form-select {
  -webkit-appearance: none;
  background: url("icon/arrow-down.svg") no-repeat right;
  background-position-x: calc(100% - 10px);
  padding: 0 35px 0 5px;
}

.live-form .live-form-body .form-group .form-select option {
  color: #3a4248;
  background-color: #eeeeed;
}

.live-form .live-form-body .form-content {
  font-size: 16px;
  line-height: 1.4em;
  padding: 7px 0;
  color: #3a4248;
  font-weight: 500;
}

.live-form .live-form-button {
  margin-left: 15px;
}

.live-form .live-form-button .btn-edit-form {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
}

.live-form .live-form-button .btn-edit-form svg path {
  fill: #778498;
}

.live-form .live-form-button .btn-edit-form:hover {
  background-color: #d0d6dd;
  border-color: #d0d6dd;
}

.live-form .live-form-button .btn-confirm-form {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #d0d6dd;
}

.live-form .live-form-button .btn-confirm-form svg path {
  fill: #31C947;
}

.live-form .live-form-button .btn-confirm-form:hover {
  background-color: #c7ced7;
  border-color: #c7ced7;
}

.live-once-img-area {
  width: 100%;
}

.live-once-img-area .live-once-img-group {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 5px;
  background-image: repeating-linear-gradient(135deg, transparent 0 5px, #3a4248 5px 11px);
  cursor: pointer;
}

.live-once-img-area .live-once-img-group:before {
  content: '';
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  z-index: 1;
  background-color: #f7f7f7;
  border-radius: 5px;
}

.live-once-img-area .live-once-img-group:after {
  content: attr(title);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 5px;
  line-height: 25px;
  background-color: #00000070;
  color: #FFF;
  font-size: 14px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.live-once-img-area .live-once-img-group input[type=file] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
}

.live-once-img-area .live-once-img-group .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 5px;
  z-index: 2;
  border-radius: 5px;
}

.live-once-img-area .live-once-img-group .img .bg-defult {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 5px;
  z-index: 3;
  border-radius: 5px;
}

.live-once-img-area .live-once-img-group .img .preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 4;
  opacity: 0;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.live-once-img-area .live-once-img-group .img .button-group {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  min-height: 35px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
  background-color: #dadbe3;
  z-index: 5;
  display: none;
  opacity: 0.9;
}

.live-once-img-area .live-once-img-group .img .button-group .open-image {
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
}

.live-once-img-area .live-once-img-group .img .button-group .open-image svg path {
  fill: #58606e;
}

.live-once-img-area .live-once-img-group .img .button-group .open-image:hover svg path {
  fill: #3e88fb;
}

.live-once-img-area .live-once-img-group .img .button-group .delete {
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
}

.live-once-img-area .live-once-img-group .img .button-group .delete svg path {
  fill: #58606e;
}

.live-once-img-area .live-once-img-group .img .button-group .delete:hover svg path {
  fill: #FE635B;
}

.live-once-img-area.active .live-once-img-group {
  background-image: none;
}

.live-once-img-area.active .live-once-img-group .img .bg-defult {
  display: none;
}

.live-once-img-area.active .live-once-img-group .img .preview {
  opacity: 1;
}

.live-once-img-area.active .live-once-img-group .img .button-group {
  display: unset;
}

.live-multi-img-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.live-multi-img-group .live-multi-upload-area {
  margin-right: 10px;
  margin-bottom: 10px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
  background-image: repeating-linear-gradient(135deg, transparent 0 5px, #778498 5px 10px);
  position: relative;
}

.live-multi-img-group .live-multi-upload-area:before {
  content: '';
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  z-index: 1;
  background-color: #2e373d;
}

.live-multi-img-group .live-multi-upload-area .live-multi-upload {
  position: relative;
  width: calc(100% - 2px);
  padding-top: calc(100% - 2px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 5px;
  z-index: 2;
}

.live-multi-img-group .live-multi-upload-area input[type=file] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  z-index: 2;
}

.live-multi-img-group .live-multi-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.live-multi-img-group .live-multi-group .img-list {
  width: 120px;
  height: 120px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}

.live-multi-img-group .live-multi-group .img-list .preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.live-multi-img-group .live-multi-group .img-list .delete {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 4;
  background-color: transparent;
}

.live-multi-img-group .live-multi-group .img-list .delete:hover svg rect {
  fill: #FE635B;
}

.form-text {
  width: 100%;
  min-height: 35px;
  height: 35px;
  color: #3a4248;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding: 5px;
  border-bottom: 1px solid #d0d6dd;
  font-size: 16px;
  margin: 0 0 10px 0;
}

.form-text:focus {
  outline: none;
  border-color: #3e88fb;
}

.form-text::-webkit-input-placeholder {
  color: #9ca2a8;
}

.form-text:-ms-input-placeholder {
  color: #9ca2a8;
}

.form-text::-ms-input-placeholder {
  color: #9ca2a8;
}

.form-text::placeholder {
  color: #9ca2a8;
}

.form-text::-webkit-outer-spin-button, .form-text::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.form-date {
  width: 100%;
  min-height: 35px;
  height: 35px;
  color: #3a4248;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding: 5px;
  border-bottom: 1px solid #d0d6dd;
  font-size: 16px;
  margin: 0 0 10px 0;
  position: relative;
}

.form-date::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.form-date:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  z-index: 1;
  content: '';
  background-color: #3a4248;
  -webkit-mask: url("icon/date.svg") no-repeat 50% 50%;
          mask: url("icon/date.svg") no-repeat 50% 50%;
}

.form-date.datetime:before {
  -webkit-mask: url("icon/datetime.svg") no-repeat 50% 50%;
          mask: url("icon/datetime.svg") no-repeat 50% 50%;
}

.form-date.time:before {
  -webkit-mask: url("icon/time.svg") no-repeat 50% 50%;
          mask: url("icon/time.svg") no-repeat 50% 50%;
}

.form-date:focus {
  outline: none;
  border-color: #3e88fb;
}

.form-date::-webkit-input-placeholder {
  color: #9ca2a8;
}

.form-date:-ms-input-placeholder {
  color: #9ca2a8;
}

.form-date::-ms-input-placeholder {
  color: #9ca2a8;
}

.form-date::placeholder {
  color: #9ca2a8;
}

.form-select {
  width: 100%;
  min-height: 35px;
  color: #3a4248;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 5px;
  border-bottom: 1px solid #d0d6dd;
  font-size: 16px;
  margin: 0 0 10px 0;
  -webkit-appearance: none;
  background: url("icon/arrow-down.svg") no-repeat right;
  background-position-x: calc(100% - 10px);
  padding: 0 35px 0 5px;
}

.form-select option {
  color: #3a4248;
  background-color: #eeeeed;
}

.form-select option:disabled {
  color: #555557;
}

.form-select:focus {
  outline: none;
  border-color: #3e88fb;
}

.form-select::-webkit-input-placeholder {
  color: #9ca2a8;
}

.form-select:-ms-input-placeholder {
  color: #9ca2a8;
}

.form-select::-ms-input-placeholder {
  color: #9ca2a8;
}

.form-select::placeholder {
  color: #9ca2a8;
}

.form-color {
  -webkit-appearance: none;
  border: none;
  width: 100%;
  max-width: 120px;
  height: 35px;
  margin: 0 0 10px 0;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

.form-color::-webkit-color-swatch-wrapper {
  padding: 0;
}

.form-color::-webkit-color-swatch {
  border: none;
  border-radius: 5px;
  overflow: hidden;
}

.form-color:focus {
  outline: none;
}

.form-file {
  position: relative;
  width: 100%;
  max-width: 120px;
  height: 35px;
  margin: 0 0 10px 0;
  cursor: pointer;
}

.form-file input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.form-file .btn-upload-file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d0d6dd;
  z-index: 1;
  color: #58606e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  border: none;
}

.form-file .btn-upload-file span {
  font-size: 14px;
  margin-left: 10px;
}

.form-file .btn-upload-file svg path {
  fill: #58606e;
}

.form-file:hover .btn-upload-file {
  background-color: #c4ccd4;
}

.form-file .detail {
  display: none;
}

.form-file.active {
  max-width: 300px;
}

.form-file.active input[type=file] {
  display: none;
}

.form-file.active .btn-upload-file {
  display: none;
}

.form-file.active .detail {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-file.active .detail .file-name {
  max-width: calc(100% - 25px);
  font-size: 16px;
  color: #ffffff;
  margin-right: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.form-file.active .detail .btn-delete-file {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.form-file.active .detail .btn-delete-file:hover svg rect {
  fill: #FE635B;
}

.form-btn {
  min-width: 130px;
  min-height: 35px;
  border-radius: 5px;
  background-color: #3E88FB;
  color: #FFF;
  border: none;
}

.form-btn:hover {
  background-color: #1b72fa;
}

.form-btn:disabled {
  background-color: #58606e;
}

.form-select-tag {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  background-color: #f7f7f7;
  position: relative;
}

.form-select-tag .hidden_value_for_required {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 1px;
  border: none;
  background-color: transparent;
}

.form-select-tag .hidden_value_for_required:focus, .form-select-tag .hidden_value_for_required:active {
  outline: none;
  border: none;
}

.form-select-tag .selected-area {
  float: left;
  width: 100%;
  margin: -2.5px;
}

.form-select-tag .selected-area .selected-list {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  max-width: calc(100% - 5px);
  border-radius: 5px;
  margin: 2.5px;
  overflow: hidden;
  background-color: #e6e6e6;
}

.form-select-tag .selected-area .selected-list .remove-tag {
  min-width: 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #f7f7f7;
  cursor: pointer;
}

.form-select-tag .selected-area .selected-list .remove-tag svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.form-select-tag .selected-area .selected-list .remove-tag:hover {
  background-color: #e1e1e1;
}

.form-select-tag .selected-area .selected-list .remove-tag:hover svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.form-select-tag .selected-area .selected-list .name {
  padding: 5px 10px 5px 5px;
  font-size: 14px;
  color: #3a4248;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.form-select-tag .selected-area .selected-template {
  display: none;
}

.form-select-tag .select-dropdown {
  clear: both;
  position: relative;
}

.form-select-tag .select-dropdown .search-tag-event {
  width: 100%;
  height: 35px;
  border: none;
  border-bottom: 1px solid #d0d6dd;
  background-color: transparent;
  color: #3a4248;
  caret-color: #88B2F6;
}

.form-select-tag .select-dropdown .search-tag-event:focus {
  outline: none;
  border-color: #88B2F6;
}

.form-select-tag .select-dropdown .select-list-group {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  max-width: calc(100% + 10px);
  width: calc(100% + 10px);
  border-radius: 5px;
  padding: 0;
  overflow: hidden;
  margin: 10px -5px 0 -5px;
  display: none;
  overflow-y: auto;
  max-height: 150px;
}

.form-select-tag .select-dropdown .select-list-group.show {
  display: block;
}

.form-select-tag .select-dropdown .select-list-group .select-list, .form-select-tag .select-dropdown .select-list-group .select-title, .form-select-tag .select-dropdown .select-list-group .no-result {
  cursor: pointer;
  background-color: #eeeeed;
  font-size: 14px;
  color: #58606e;
  height: 40px;
  max-width: 100%;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.form-select-tag .select-dropdown .select-list-group .select-list.active, .form-select-tag .select-dropdown .select-list-group .select-title.active, .form-select-tag .select-dropdown .select-list-group .no-result.active {
  color: #3e88fb;
  background-color: #e6e6e6;
}

.form-select-tag .select-dropdown .select-list-group .select-list.active:hover, .form-select-tag .select-dropdown .select-list-group .select-title.active:hover, .form-select-tag .select-dropdown .select-list-group .no-result.active:hover {
  background-color: #e6e6e6;
}

.form-select-tag .select-dropdown .select-list-group .select-list:hover, .form-select-tag .select-dropdown .select-list-group .select-title:hover, .form-select-tag .select-dropdown .select-list-group .no-result:hover {
  background-color: #e1e1e1;
}

.form-select-tag .select-dropdown .select-list-group .select-list.hidden, .form-select-tag .select-dropdown .select-list-group .select-title.hidden, .form-select-tag .select-dropdown .select-list-group .no-result.hidden {
  display: none;
}

.form-select-tag .select-dropdown .select-list-group .no-result {
  padding: 10px;
  cursor: default;
}

.form-select-tag .select-dropdown .select-list-group .no-result:hover {
  background-color: #eeeeed;
}

.form-select-tag .select-dropdown .select-list-group .select-title {
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #58606e;
}

.form-select-tag .select-dropdown .select-list-group .select-title:hover {
  background-color: #eeeeed;
}

.form-date-range {
  width: 100%;
  min-height: 35px;
  background-color: #e6e6e6;
  border-radius: 5px;
  margin: 0 0 10px 0;
  position: relative;
}

.form-date-range input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 35px;
  border: none;
  font-size: 14px;
  padding: 5px 35px 5px 10px;
  margin: 0;
  background-color: transparent;
  color: #3a4248;
}

.form-date-range input:focus {
  outline: none;
}

.form-date-range input::-webkit-input-placeholder {
  color: #9ca2a8;
}

.form-date-range input:-ms-input-placeholder {
  color: #9ca2a8;
}

.form-date-range input::-ms-input-placeholder {
  color: #9ca2a8;
}

.form-date-range input::placeholder {
  color: #9ca2a8;
}

.form-date-range:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  z-index: 1;
  content: '';
  background-color: #3a4248;
  -webkit-mask: url("icon/date.svg") no-repeat 50% 50%;
          mask: url("icon/date.svg") no-repeat 50% 50%;
}

.form-select-img {
  border-bottom: 1px solid #e6e6e6;
  height: 35px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0;
}

.form-select-img:focus {
  outline: none;
  border-color: #3e88fb;
}

.form-select-img input[select_value] {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 1px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border: none;
  background: none;
}

.form-select-img input[select_value]:focus {
  outline: none;
}

.form-select-img .dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  cursor: pointer;
}

.form-select-img .dropdown-toggle .select-img-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  width: calc(100% - 35px);
}

.form-select-img .dropdown-toggle .select-img-group .img-color {
  min-width: 25px;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  border-radius: 5px;
}

.form-select-img .dropdown-toggle .select-img-group .img {
  min-width: 25px;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-select-img .dropdown-toggle .select-img-group .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form-select-img .dropdown-toggle .select-img-group .name {
  width: calc(100% - 35px);
  font-size: 16px;
  color: #3a4248;
  margin-left: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.form-select-img .dropdown-toggle .select-img-group .placeholder {
  width: 100%;
  font-size: 16px;
  color: #9ca2a8;
  margin-left: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.form-select-img .dropdown-toggle .arrow {
  min-width: 35px;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-select-img .dropdown-toggle .arrow svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.form-select-img .dropdown-toggle:after {
  display: none;
}

.form-select-img .dropdown-menu {
  background-color: #ffffff;
  padding: 0;
  overflow: hidden;
  border-radius: 5px;
  z-index: 10;
  overflow-y: auto;
  max-height: 50vh;
}

.form-select-img .dropdown-menu .no-result {
  background-color: #eeeeed;
  font-size: 14px;
  color: #58606e;
  height: 40px;
  max-width: 100%;
  padding: 10px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: none;
}

.form-select-img .dropdown-menu .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 5px 10px;
  cursor: pointer;
}

.form-select-img .dropdown-menu .dropdown-item.hidden {
  display: none;
}

.form-select-img .dropdown-menu .dropdown-item .img-color {
  min-width: 25px;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  border-radius: 5px;
}

.form-select-img .dropdown-menu .dropdown-item .img {
  min-width: 25px;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-select-img .dropdown-menu .dropdown-item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form-select-img .dropdown-menu .dropdown-item .name {
  width: calc(100% - 30px);
  font-size: 16px;
  color: #3a4248;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.form-select-img .dropdown-menu .dropdown-item:hover {
  background-color: #e6e6e6;
}

.form-select-img .dropdown-srarch {
  width: 100%;
  background-color: #fbfbfb;
  padding: 0;
  border-radius: 5px;
  z-index: 10;
  overflow-y: auto;
  max-height: 70vh;
  padding: 3px;
}

.form-select-img .dropdown-srarch input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #dadbe3;
  border-radius: 5px;
  color: #3a4248;
  padding: 0 10px;
  height: 35px;
}

.form-select-img .dropdown-srarch input:hover, .form-select-img .dropdown-srarch input:active, .form-select-img .dropdown-srarch input:focus {
  outline: none;
}

.form-select-img .dropdown-srarch input:focus {
  border-color: #e6e6e6;
}

.form-select-img.show .dropdown-toggle .arrow svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.telephone-form-group .iti {
  width: 100%;
}

.telephone-form-group .iti .iti__flag-container .iti__selected-flag {
  background-color: transparent;
}

.telephone-form-group .iti .iti__flag-container .iti__selected-flag .iti__arrow {
  border: none;
  width: 30px;
  height: 30px;
  background: url("icon/arrow-down.svg") no-repeat center;
}

.telephone-form-group .iti .iti__flag-container .iti__selected-flag .iti__arrow.iti__arrow--up {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.telephone-form-group .iti .iti__flag-container .iti__selected-flag:focus {
  outline: none;
}

.telephone-form-group .iti .iti__flag-container .iti__country-list {
  background-color: #eeeeed;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
}

.telephone-form-group .iti .iti__flag-container .iti__country-list .iti__country .iti__country-name {
  color: #3a4248;
}

.telephone-form-group .iti .iti__flag-container .iti__country-list .iti__country .iti__dial-code {
  color: #3a4248;
}

.telephone-form-group .iti .iti__flag-container .iti__country-list .iti__divider {
  border-color: #d0d6dd;
}

.flatpickr-calendar {
  background-color: #d5d5d5;
  -webkit-box-shadow: 0px 0px 10px 0px #0000003d;
          box-shadow: 0px 0px 10px 0px #0000003d;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #d5d5d5;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #d5d5d5;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #d5d5d5;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #d5d5d5;
}

.flatpickr-calendar .flatpickr-months .flatpickr-current-month {
  padding: 5px 0 0 0;
}

.flatpickr-calendar .flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months {
  color: #3a4248;
  font-size: 16px;
}

.flatpickr-calendar .flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months option {
  color: #3a4248;
  background-color: #eeeeed;
}

.flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper .numInput {
  font-size: 16px;
  color: #3a4248;
}

.flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper .arrowUp {
  border: none;
}

.flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper .arrowUp:after {
  border-bottom-color: #3a4248;
}

.flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper .arrowDown {
  border: none;
}

.flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper .arrowDown:after {
  border-top-color: #3a4248;
}

.flatpickr-calendar .flatpickr-months .flatpickr-prev-month, .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg path, .flatpickr-calendar .flatpickr-months .flatpickr-next-month svg path {
  fill: #58606e;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .flatpickr-weekdays .flatpickr-weekdaycontainer span.flatpickr-weekday {
  color: #58606e;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day {
  color: #3a4248;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day.prevMonthDay {
  color: #9ca2a8;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day.nextMonthDay {
  color: #9ca2a8;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day.inRange {
  border: none;
  background-color: #e6e6e6;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
          box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day.startRange {
  background-color: #3e88fb;
  color: #232b32;
  border: none;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day.endRange {
  background-color: #3e88fb;
  color: #232b32;
  border: none;
  -webkit-box-shadow: -10px 0 0 #e6e6e6;
          box-shadow: -10px 0 0 #e6e6e6;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day:hover {
  color: #232b32;
  background-color: #3e88fb;
  border: none;
}

.check-password-group .check-password-title {
  font-size: 14px;
  color: #58606e;
  margin-bottom: 10px;
}

.check-password-group .check-list-condition {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}

.check-password-group .check-list-condition .icon {
  min-width: 15px;
  width: 15px;
  height: 15px;
  background-image: url("icon/no.svg");
  margin-right: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.check-password-group .check-list-condition .description {
  font-size: 13px;
  color: #FE645B;
  line-height: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.check-password-group .check-list-condition.active .icon {
  background-image: url("icon/yes.svg");
}

.check-password-group .check-list-condition.active .description {
  color: #298F6E;
}

.value-not-match {
  display: none;
  color: #fe635b;
  font-size: 13px;
  position: absolute;
  margin: -10px 0 0 0;
  z-index: 1;
}

.available-message {
  color: #fe635b;
  font-size: 13px;
  position: absolute;
  margin: -10px 0 0 0;
  z-index: 1;
}
/*# sourceMappingURL=form_theme.css.map */