.v-select {
  position: relative;
  font-family: inherit
}

.v-select, .v-select * {
  box-sizing: border-box
}

@-webkit-keyframes vSelectSpinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0)
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes vSelectSpinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0)
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

.vs__fade-enter-active, .vs__fade-leave-active {
  transition: opacity .15s cubic-bezier(1, .5, .8, 1)
}

.vs__fade-enter, .vs__fade-leave-to {
  opacity: 0
}

.vs--disabled .vs__clear, .vs--disabled .vs__dropdown-toggle, .vs--disabled .vs__open-indicator, .vs--disabled .vs__search, .vs--disabled .vs__selected {
  cursor: not-allowed;
  background-color: var(--color-neutral-secondary-medium)
}

.v-select[dir=rtl] .vs__actions {
  padding: 0 3px 0 6px
}

.v-select[dir=rtl] .vs__clear {
  margin-left: 6px;
  margin-right: 0
}

.v-select[dir=rtl] .vs__deselect {
  margin-left: 0;
  margin-right: 2px
}

.v-select[dir=rtl] .vs__dropdown-menu {
  text-align: right
}

.vs__dropdown-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  padding: 0 0 4px;
  background: none;
  border: 1px solid rgba(60, 60, 60, .26);
  border-radius: 4px;
  white-space: normal
}

.vs__selected-options {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0 2px;
  position: relative
}

.vs__actions {
  display: flex;
  align-items: center;
  padding: 4px 6px 0 3px
}

.vs--searchable .vs__dropdown-toggle {
  cursor: text;
  padding: .35rem;
  border: 1px solid rgba(60, 60, 60, .26);
  background: var(--color-neutral-secondary-medium);
  border-radius: 8px
}

.vs--searchable .vs__dropdown-toggle:focus-within {
  background-color: var(--color-neutral-primary)
}

.vs--searchable:focus-within {
  border-color: rgba(183, 85, 28, .74);
  outline: 0;
  box-shadow: 0 0 0 6px rgba(243, 112, 36, .1)
}

.vs--unsearchable .vs__dropdown-toggle {
  cursor: pointer
}

.vs--open .vs__dropdown-toggle {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

.vs__open-indicator {
  fill: var(--color-body-subtle);
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: -webkit-transform .15s cubic-bezier(1, -.115, .975, .855);
  transition: transform .15s cubic-bezier(1, -.115, .975, .855);
  transition: transform .15s cubic-bezier(1, -.115, .975, .855), -webkit-transform .15s cubic-bezier(1, -.115, .975, .855);
  transition-timing-function: cubic-bezier(1, -.115, .975, .855)
}

.vs--open .vs__open-indicator {
  -webkit-transform: rotate(180deg) scale(1);
  transform: rotate(180deg) scale(1)
}

.vs--loading .vs__open-indicator {
  opacity: 0
}

.vs__clear {
  fill: var(--color-body-subtle);
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px
}

.vs__dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: 250px;
  min-width: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
  border: 1px solid rgba(60, 60, 60, .26);
  border-radius: 0 0 8px 8px;
  text-align: left;
  list-style: none;
  background: var(--color-neutral-primary)
}

.select-option-data {
  display: flex;
  gap: 1rem
}

.select-option-data span:first-child {
  width: 40px;
  text-align: left;
  direction: ltr
}

.select-option-data img {
  object-fit: contain;
  background: var(--color-default-subtle)
}

.vs__no-options {
  text-align: center
}

.vs__dropdown-option {
  line-height: 1.42857143;
  display: block;
  padding: 3px 1rem;
  clear: both;
  color: var(--color-body);
  white-space: nowrap
}

.vs__dropdown-option:hover {
  cursor: pointer
}

.vs__dropdown-option--highlight {
  background: var(--color-secondary-500);
  color: var(--color-secondary-100)
}

.vs__selected {
  display: flex;
  align-items: center;
  background-color: var(--color-default-subtle);
  border: 1px solid rgba(60, 60, 60, .26);
  border-radius: 4px;
  color: var(--color-body-subtle);
  line-height: 1.4;
  margin: 4px 2px 0;
  padding: 0 .25rem
}

.vs__deselect {
  display: inline-flex;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-left: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  fill: var(--color-body-subtle);
  text-shadow: 0 1px 0 #fff
}

.vs--single .vs__selected {
  background-color: transparent;
  border-color: transparent
}

.vs--single.vs--open .vs__selected {
  position: absolute;
  opacity: .4
}

.vs--single.vs--searching .vs__selected {
  display: none
}

.vs__search::-ms-clear, .vs__search::-webkit-search-cancel-button, .vs__search::-webkit-search-decoration, .vs__search::-webkit-search-results-button, .vs__search::-webkit-search-results-decoration {
  display: none
}

.vs__search, .vs__search:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1.4;
  font-size: 1rem;
  border: 1px solid transparent;
  border-left: none;
  outline: none;
  margin: 4px 0 0;
  padding: 0 7px;
  background: none;
  box-shadow: none;
  width: 0;
  max-width: 100%;
  flex-grow: 1
}

.sc-form-section .og-input::-webkit-input-placeholder, .vs__search::-webkit-input-placeholder {
  color: #888;
  font-style: italic
}

.sc-form-section .og-input::-ms-input-placeholder, .vs__search:-ms-input-placeholder {
  color: #888;
  font-style: italic
}

.sc-form-section .og-input::-ms-input-placeholder, .vs__search::-ms-input-placeholder {
  color: #888;
  font-style: italic
}

.sc-form-section .og-input::placeholder, .vs__search::placeholder {
  color: #888;
  font-style: italic
}

.vs--unsearchable .vs__search {
  opacity: 1
}

.vs--unsearchable .vs__search:hover {
  cursor: pointer
}

.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
  opacity: .2
}

.vs__spinner {
  align-self: center;
  opacity: 0;
  font-size: 5px;
  text-indent: -9999rem;
  overflow: hidden;
  border: .9rem solid hsla(0, 0%, 39.2%, .1);
  border-left-color: rgba(60, 60, 60, .45);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: vSelectSpinner 1.1s linear infinite;
  animation: vSelectSpinner 1.1s linear infinite;
  transition: opacity .1s
}

.vs__spinner, .vs__spinner:after {
  border-radius: 50%;
  width: 5rem;
  height: 5rem
}

.vs--loading .vs__spinner {
  opacity: 1
}

.og-button-secondary[disabled] {
  cursor: not-allowed;
  opacity: .8;
  color: rgba(255, 255, 255, .8)
}

.og-button-secondary.submitting {
  cursor: wait
}

.section-field-btn .og-button {
  display: block;
  padding: calc(var(--spacing) * 2) calc(var(--spacing) * 4);
  font-size: 1.2rem;
  text-transform: unset;
  background-color: var(--color-success);
  color: var(--color-success-soft);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .05)
}

.og-button-secondary[disabled]:focus, .og-button-secondary[disabled]:hover {
  background: #888;
  color: #fff
}

.og-button {
  border: 0;
  border-radius: 5px;
  position: relative;
  z-index: 11;
  cursor: pointer
}

.og-input[type=file] {
  padding: 10px
}

.field-item {
  margin-bottom: 1rem
}

.sc-form-section {
  background: var(--color-neutral-primary-soft);
  border: 1px solid var(--color-default);
  border-radius: 8px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, .03)
}

.grouping .section-header {
  border: 1px solid var(--color-default)
}

.sc-form-section.grouping {
  border: 0;
  background: transparent;
  box-shadow: 0 0 0 transparent
}

.sc-form-section .section-field-wrapper:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px
}

form .sc-form-section {
  margin-bottom: 2rem
}

.sc-form-section {
  position: relative
}

.sc-form-submit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1
}

.sc-form-submit-overlay svg {
  max-width: 150px;
  max-height: 150px;
  height: 100%;
  width: 100%;
  object-fit: contain
}

.section-header {
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-default);
  padding: 10px 1rem;
  font-size: var(--text-xl);
  background: var(--color-brand-softest);
  color: var(--color-brand);
  border-radius: 8px 8px 0 0;
  font-family: var(--font-for-heads) serif;
  font-weight: 500;
}

.section-header.has-subtitle {
  margin-bottom: 0
}

.section-header.has-toggle {
  display: flex;
  justify-content: space-between;
  align-content: center
}

.sc-from-section-toggler {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.3rem;
  color: #000;
  opacity: .5;

  &:hover {
    opacity: 1
  }
}

.section-header.has-toggle.toggle-close {
  border-color: transparent;
  border-radius: 8px
}

.section-sub-header {
  padding: 10px 1rem;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 300
}

.sc-form-section .section-field {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  flex-wrap: wrap
}

.sc-form-section .section-field-text {
  align-items: center
}

.sc-form-section .section-field.section-field-file {
  flex-direction: column;
  align-items: stretch;
  gap: 10px
}

.section-field-file .field-label-style {
  align-content: start
}

.sc-form-section .section-field.section-field-textarea, .sc-form-section .section-field.section-field-textarea_limit, .sc-form-section .section-field.section-field-checkbox_group {
  align-items: unset
}

.field-helper {
  font-weight: 400;
  font-size: 1rem;
  font-style: italic
}

.field-radio-group.field-checkbox-group {
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 10px
}

.sc-form-section .section-field.has-inside-label {
  gap: 0;
  display: block
}

.flexible-group.skills .section-field-wrapper, .flexible-group.languages .section-field-wrapper {
  border-left-color: transparent;
  border-bottom-color: transparent
}

.field-label {
  font-size: 1.1rem;
  flex: 1;
  text-align: end;
  margin: 0
}

.field-label-inside {
  font-size: 1.1rem;
  margin-bottom: 10px
}

.field-label-inside.full {
  flex-grow: 1;
  width: 100%
}

.field-item {
  flex: 2;
  margin: 0
}

.required-field {
  color: red
}

.heading {
  margin-bottom: 1rem
}

.field-group, .field-radio-group {
  display: flex;
  gap: 25px;
  font-size: 1.1rem
}

.field-group.field-checkbox-group {
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 10px
}

.field-radio-group label {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0
}

input.has-error, select.has-error, textarea.has-error {
  border: 1px solid #e53935 !important
}

.field-error {
  font-size: .8rem;
  font-style: italic;
  color: #e53935;
  margin-top: 5px
}

.field-error:before {
  content: "*";
  display: inline-block;
  padding-inline-end: 5px
}

.slide-fade-enter-active, .slide-fade-leave-active {
  transition: all .2s linear
}

.slide-fade-enter, .slide-fade-leave-to {
  transform: translateY(-1rem);
  opacity: 0
}

.sub-label {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px
}

.sc-form-language-switch {
  padding: 8px 16px;
  background: #f8f8f8;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid var(--color-default);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .03);
  color: #f37024;
  display: block
}

.sc-form-heading-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  align-content: center
}

.field-inner-wrapper {
  display: flex;
  gap: 1rem
}

.field-inner-wrapper.field-inner-wrapper-phone {
  flex-direction: row-reverse
}

.field-label-style {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: end
}

.field-label-style-inner {
  display: flex;
  gap: 5px;
  justify-content: end
}

.width-400 {
  max-width: 400px
}

.checkbox-item {
  margin: 0;
  display: flex;
  gap: 5px;
  align-items: center
}

.field-label-inside, .field-label {
  font-weight: bold;
}

.select-options-header {
  font-style: italic;
  padding: 5px 15px;
  border-bottom: 1px solid var(--color-default);
  margin-bottom: 5px;
  margin-top: -5px;
  background: #f8f8f8;
  color: #444
}

.section-fields-group {
  display: grid;
  grid-template-columns:repeat(2, 1fr)
}

.flexible-group-wrapper {
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
  border: 0;
  min-width: 0;
  min-height: 0;
  gap: .5rem
}

.flexible-group {
  display: flex;
  border: 1px solid var(--color-default);
  border-radius: 8px;
  background: #fff;
  flex-wrap: wrap
}

.flexible-group-wrapper .flexible-group:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 0
}

.flex-group-controls {
  display: flex;
  gap: 1rem
}

.flex-group-controls .btn-danger {
  color: #dc3545;
  border-color: #ffa2ab;
  background-color: #fff;
  cursor: pointer
}

.flex-group-controls .btn-toggle {
  border: 1px solid var(--color-default);
  cursor: pointer;
  background: #fff;
  box-shadow: 0 0 0 transparent
}

.flex-group-controls .btn {
  font-size: .8rem;
  display: flex;
  gap: .5rem;
  align-items: center
}

.flex-group-controls .btn .fa-icon {
  margin: 0
}

.flexible-group-title {
  width: 100%;
  padding: .5rem 1rem;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--color-default);
  background: #eee;
  color: #333;
  display: flex;
  justify-content: space-between;
  margin: 0;
  line-height: 1;
  align-items: center;
  font-weight: 400;
  border-radius: 8px 8px 0 0
}

.flexible-group-wrapper .flexible-group:first-child .flexible-group-title {
  border-radius: 0
}

.flexible-group-title.toggled {
  border-color: transparent;
  border-radius: 8px
}

.toggled-field {
  display: none !important
}

.flexible-group .section-field-wrapper {
  width: 33.33333333%
}

.flexible-group {
  margin-bottom: .5rem;
  box-shadow: 0 5px 5px rgba(0, 0, 0, .03)
}

.flexible-group.removable {
  border-style: dashed;
  border-color: #aaa
}

.flexible-group.removable .flexible-group-title {
  border-bottom-style: dashed;
  border-color: #aaa
}

.sc-form-section .flexible-group .section-field-wrapper:nth-of-type(even) {
  background: transparent;
  border-radius: 0
}

.sc-form-section .flexible-group .section-field {
  flex-direction: column;
  justify-content: unset;
  align-items: stretch;
  gap: 10px
}

.flexible-group .field-label-style {
  align-content: flex-start
}

.group-controls {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end
}

.group-controls .btn {
  font-size: 1.1rem;
  padding: .4rem 1rem;
  cursor: pointer;
  text-align: inherit
}

.field-inner-wrapper.field-inner-wrapper-phone .v-select {
  min-width: 120px !important;
  width: 120px
}

.field-inner-wrapper.field-inner-wrapper-phone .vs__selected-options {
  direction: ltr;
  text-align: left;
  flex-wrap: nowrap
}

@media (max-width: 786px) {
  .field-radio-group label {
    align-items: center
  }

  .flexible-group, .section-fields-group {
    display: block
  }

  .flexible-group .section-field-wrapper, .flexible-group.skills .section-field-wrapper, .flexible-group.languages .section-field-wrapper {
    width: 100% !important
  }

  .field-inner-wrapper, .sc-form-heading-wrapper {
    flex-direction: column
  }

  .sc-form-heading-wrapper {
    gap: 10px;
    margin-bottom: 2rem;
    align-items: unset
  }

  .field-label {
    font-size: 1rem
  }

  .sc-form input:not(.vs__search):not([type=radio]):not([type=checkbox]), .sc-form button, .sc-form textarea, .sc-form select {
    width: 100%;
    max-width: 100%
  }

  .field-item {
    flex: unset;
    width: 100%
  }

  .width-400 {
    max-width: 100%
  }

  .field-label-style-inner, .field-label-style {
    align-content: unset;
    text-align: unset;
    justify-content: unset
  }

  .field-label-style-inner {
    justify-content: space-between;
    width: 100%;
    font-size: 1.1rem
  }

  svg.vs__open-indicator {
    overflow: unset
  }

  .field-radio-group.field-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px
  }

  .sc-form-section .section-field {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 15px
  }

  .sa-alert-container {
    margin-bottom: 1rem
  }

  .field-radio-group .checkbox-item, .checkbox-item {
    align-items: unset
  }

  .field-radio-group {
    justify-content: center
  }

  .sc-form .checkbox-item input {
    margin-top: 5px
  }
}

@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px)
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0)
  }
  to {
    opacity: 0;
    transform: translateY(-40px)
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px)
  }
  30% {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {
  0% {
    transform: scale(1)
  }
  10% {
    transform: scale(1.1)
  }
  20% {
    transform: scale(1)
  }
}

.dropzone, .dropzone * {
  box-sizing: border-box
}

.dropzone {
  min-height: 150px;
  border: 1px solid rgba(0, 0, 0, .8);
  border-radius: 5px;
  padding: 20px
}

.dropzone.dz-clickable {
  cursor: pointer
}

.dropzone.dz-clickable * {
  cursor: default
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer
}

.dropzone.dz-started .dz-message {
  display: none
}

.dropzone.dz-drag-hover {
  border-style: solid
}

.dropzone.dz-drag-hover .dz-message {
  opacity: .5
}

.dropzone .dz-message {
  text-align: center;
  margin: 3rem 0
}

.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px
}

.dropzone .dz-preview:hover {
  z-index: 1000
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, var(--color-default))
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1
}

.dropzone .dz-preview.dz-image-preview {
  background: #fff
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity .2s linear
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2rem 1rem;
  text-align: center;
  color: rgba(0, 0, 0, .9);
  line-height: 150%
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1rem;
  font-size: 16px
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, .8);
  background-color: rgba(255, 255, 255, .8)
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, .4);
  padding: 0 .4rem;
  border-radius: 3px
}

.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05);
  filter: blur(8px)
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10
}

.dropzone .dz-preview .dz-image img {
  display: block
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(.77, 0, .175, 1)
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(.77, 0, .175, 1)
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
  background: rgba(0, 0, 0, .8);
  border-radius: 50%
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
  fill: #fff
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all .2s linear
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity .4s ease-in
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  left: 15%;
  right: 15%;
  border: 3px solid rgba(0, 0, 0, .8);
  background: rgba(0, 0, 0, .8);
  border-radius: 10px;
  overflow: hidden
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #fff;
  display: block;
  position: relative;
  height: 100%;
  width: 0;
  transition: width .3s ease-in-out;
  border-radius: 17px
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #b10606;
  padding: .5rem 1rem;
  color: #fff
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #b10606
}

.dz-message.dz-notice {
  display: flex;
  flex-direction: column;
  margin: 0;
  align-content: center;
  justify-content: center;
  justify-items: center;
  text-align: center
}

.dz-new-details {
  display: flex;
  gap: 1rem;
  align-items: center
}

.dz-new-size {
  font-size: 14px
}

.dz-notice .fa-icon {
  font-size: 2rem
}

.dropzone {
  border-radius: 8px;
  border: 2px dashed var(--color-default-medium);
  background: var(--color-neutral-secondary);
  margin-left: auto;
  margin-right: auto;
  min-height: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  padding: 1rem
}

.not-valid .dropzone {
  border-color: #d3323f
}

.dz-upload-icon {
  text-align: center
}

.dz-new-filename {
  display: flex;
  gap: 10px;
  align-items: center
}

.dz-new-size {
  width: 80px;
  text-align: center
}

.dropzone .dz-preview {
  min-height: auto;
  margin: 0;
  width: 100%;
  display: flex;
  padding: 10px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid var(--color-default);
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap
}

.dropzone .dz-preview .dz-progress {
  top: 0px;
  right: 10px;
  border-width: 1px;
  height: 10px;
  border-bottom-left-radius: 0;
  border-color: #8bc34a;
  border-bottom-right-radius: 0;
  overflow: hidden;
  width: 50%;
  background-color: #fff;
  left: auto
}

.dropzone .dz-preview .dz-progress .dz-upload {
  border-radius: 0;
  border: 0;
  background: #8bc34a
}

.dropzone .dz-preview .dz-error-message {
  top: -40px;
  width: unset;
  right: 0;
  left: auto
}

.dropzone .dz-preview .dz-remove {
  border: 1px solid #dc3545;
  color: #dc3545;
  border-radius: 5px;
  background: #fff;
  min-width: 80px;
  margin: 0
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: none;
  background-color: #eee
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  width: auto;
  height: auto;
  margin: 0
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  margin: 0;
  top: -12px;
  width: 30px;
  left: -12px;
  height: 30px;
  align-items: center;
  align-content: center;
  padding: 8px
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  background: rgba(220, 53, 69, .79)
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  background: rgba(139, 195, 74, .83)
}

.dropzone .dz-preview .dz-error-message:after {
  bottom: -12px;
  border-bottom: 6px solid transparent;
  border-top: 6px solid #b10606;
  top: auto
}

.dz-new-filename-string {
  max-width: 150px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block
}

.dropzone.dz-started .dz-message {
  display: block
}

.dropzone.dz-max-files-reached .dz-message {
  display: none
}

svg[data-v-6226fb5d] {
  max-width: 100px;
  max-height: 100px
}
