.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-disabled)
}

.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 var(--color-default-strong);
  border-radius: var(--radius-xs);
  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: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-default-strong);
  background: var(--color-neutral-primary)
}

.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: 350px;
  min-width: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--color-default-strong);
  border-top-style: none;
  border-radius: 0 0 var(--radius-xs);
  text-align: left;
  list-style: none;
  background: var(--color-neutral-primary-medium)
}

.vs__no-options {
  text-align: center
}

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

.vs__dropdown-option:hover {
  cursor: pointer
}

.vs__dropdown-option--highlight {
  background: var(--color-brand-secondary);
  color: var(--color-neutral-primary)
}

.vs__selected {
  display: flex;
  align-items: center;
  background-color: var(--color-neutral-tertiary);
  border: 1px solid var(--color-default-strong);
  border-radius: var(--radius-xs);
  color: var(--color-body);
  line-height: 1.4;
  margin: 4px 2px 0;
  padding: 0 .25em
}

.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 var(--color-neutral-primary)
}

.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: 1em;
  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;
  color: var(--color-body)
}

.vs__search::-webkit-input-placeholder {
  color: inherit
}

.vs__search:-ms-input-placeholder {
  color: inherit
}

.vs__search::-ms-input-placeholder {
  color: inherit
}

.vs__search::placeholder {
  color: inherit
}

.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: -9999em;
  overflow: hidden;
  border: .9em solid var(--color-default-subtle);
  border-left-color: var(--color-default-strong);
  -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: 5em;
  height: 5em
}

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

.og-input, .og-textarea {
  margin: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-default-medium);
  background: var(--color-neutral-primary);
  color: var(--color-body);
  border-radius: var(--radius-md);
  padding: 10px 20px
}

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

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

.section-field-btn .og-button {
  display: block;
  padding: 10px 40px;
  font-size: var(--text-base);
  text-transform: unset;
  line-height: 1;
  background-color: var(--color-success);
  color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05)
}

.og-button-secondary[disabled]:focus, .og-button-secondary[disabled]:hover {
  background: var(--color-disabled);
  color: var(--color-fg-disabled)
}

.og-button {
  border: 0;
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 11;
  cursor: pointer
}

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

.og-input:focus, .og-textarea:focus {
  border-color: var(--color-default-strong);
  outline: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3)
}

.field-item {
  margin-bottom: 20px
}

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

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

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

.sc-form-section .section-field-wrapper:last-child {
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md)
}

form .sc-form-section {
  margin-bottom: 40px
}

.sc-form-section {
  position: relative
}

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

.dark .sc-form-submit-overlay {
  background: rgba(0, 0, 0, .5);
}

.sc-form-submit-overlay img {
  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 20px;
  font-size: 1.5em;
  font-weight: 400;
  background: var(--color-brand-softest);
  color: var(--color-brand);
  border-radius: var(--radius-md) var(--radius-md) 0 0
}

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

.section-sub-header {
  padding: 10px 15px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  margin-bottom: 0;
  
  font-weight: 300;
  font-style: italic;
  border-radius: 0;
  color: var(--color-body-subtle)
}

.sc-form-section .section-field {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 20px;
  flex-wrap: wrap
}

.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-radio-group.field-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px
}

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

.sc-form-section .section-field-wrapper {
  border-bottom: 1px solid var(--color-default);
  margin-bottom: -1px
}

.sc-form-section.source .section-field-wrapper {
  border-bottom-color: transparent;
  border-left-color: transparent
}

.sc-form-section .section-field-wrapper {
  border-left: 1px solid var(--color-default);
  margin-left: -1px
}

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

.field-label {
  font-size: var(--text-base);
  flex: 1;
  text-align: end;
  margin: 0;
  color: var(--color-heading)
}

.field-label-inside {
  font-size: var(--text-base);
  margin-bottom: 10px;
  color: var(--color-heading)
}

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

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

.required-field {
  color: var(--color-fg-danger)
}

.heading {
  margin-bottom: 20px;
  color: var(--color-heading)
}

.field-group, .field-radio-group {
  display: flex;
  gap: 25px;
  
  color: var(--color-body)
}

.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 var(--color-fg-danger) !important
}

.field-error {
  font-size: .8em;
  font-style: italic;
  color: var(--color-fg-danger);
  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(-20px);
  opacity: 0
}

.sub-label {
  display: block;
  font-size: 1em;
  margin-bottom: 5px;
  color: var(--color-body-subtle)
}

#SC_Form input[type=checkbox]:disabled, #SC_Form input[type=radio]:disabled {
  opacity: .6
}

#SC_Form input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color-neutral-primary);
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1em;
  height: 1em;
  border: .15em solid var(--color-default-strong);
  border-radius: .15em;
  transform: translateY(-.075em);
  display: grid;
  place-content: center;
  outline: 0
}

#SC_Form input[type=checkbox]:before {
  content: "";
  width: .65em;
  height: .65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: .12s transform ease-in-out;
  box-shadow: inset 1em 1em var(--color-neutral-primary);
  background-color: currentColor
}

#SC_Form input[type=checkbox]:checked:before {
  transform: scale(1)
}

#SC_Form input[type=checkbox]:checked {
  background: var(--color-brand);
  border-color: var(--color-brand)
}

#SC_Form input[type=radio]:focus, #SC_Form input[type=checkbox]:focus {
  transition: .5s all ease;
  box-shadow: 0 0 0 .2em var(--color-warning-subtle)
}

#SC_Form input[type=checkbox]:disabled {
  color: var(--color-fg-disabled);
  cursor: not-allowed
}

#SC_Form input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color-neutral-primary);
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 20px;
  height: 20px;
  border: .15em solid var(--color-default-strong);
  border-radius: 50%;
  transform: translateY(-.075em);
  transition: .5s all ease;
  display: grid;
  place-content: center
}

#SC_Form input[type=radio]:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  transition: .12s transform ease-in-out;
  box-shadow: inset 1em 1em var(--color-brand);
  background-color: currentColor
}

#SC_Form input[type=radio]:checked {
  border-color: var(--color-brand)
}

#SC_Form input[type=radio]:checked:before {
  transform: scale(1)
}

.sc-form-language-switch {
  padding: 8px 16px;
  background: var(--color-neutral-secondary);
  font-size: 1em;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-default);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.03);
  color: var(--color-brand);
  display: block
}

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

.field-inner-wrapper {
  display: flex;
  gap: 20px
}

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

.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: 500
}

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

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

.flexible-group-wrapper {
  display: flex;
  flex-direction: column;
  background: var(--color-neutral-secondary);
  border: 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.03);
  min-width: 0;
  min-height: 0
}

.sc-form-section:not(.grouping) .flexible-group-wrapper {
  margin-left: -1px;
  margin-right: -1px
}

.flexible-group {
  display: flex;
  border: 1px solid var(--color-default);
  border-top: 0;
  background: var(--color-neutral-primary);
  flex-wrap: wrap
}

.flex-group-controls {
  display: flex;
  gap: 20px
}

.flex-group-controls .btn-danger {
  color: var(--color-fg-danger);
  border-color: var(--color-danger-subtle);
  background-color: var(--color-neutral-primary);
  cursor: pointer
}

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

.flexible-group-title {
  width: 100%;
  padding: 5px 20px;
  font-size: var(--text-base);
  border-bottom: 1px solid var(--color-default);
  background: var(--color-neutral-tertiary);
  color: var(--color-heading);
  display: flex;
  justify-content: space-between;
  margin: 0;
  line-height: 1;
  align-items: center;
  font-weight: 400
}

.flexible-group-title.toggled {
  border-color: transparent;
  border-radius: var(--radius-md)
}

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

.flexible-group.removable {
  border-style: dashed;
  border-color: var(--color-default-strong)
}

.flexible-group.removable .flexible-group-title {
  border-bottom-style: dashed;
  border-color: var(--color-default-strong)
}

.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 {
  padding: 1em;
  background: var(--color-neutral-primary);
  border-radius: var(--radius-md);
  margin-top: 1em;
  border: 1px solid var(--color-default);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.03)
}

.group-controls .btn {
  width: 100%;
  font-size: var(--text-base);
  padding: .5em;
  cursor: pointer;
  background: var(--color-brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
}

@media (max-width: 786px) {
  .flexible-group, .section-fields-group {
    display: block
  }

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

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

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

  #SC_Form input, #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%
  }

  .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: 20px
  }

  .checkbox-item {
    align-items: unset
  }

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

  #SC_Form .checkbox-item input {
    margin-top: 5px
  }

  .section-field-phone .field-inner-wrapper {
    flex-direction: column
  }
}

@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 var(--color-default-strong);
  border-radius: var(--radius-sm);
  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: 3em 0;
  color: var(--color-body)
}

.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: var(--color-neutral-tertiary)
}

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

.dropzone .dz-preview.dz-image-preview {
  background: var(--color-neutral-primary)
}

.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: 2em 1em;
  text-align: center;
  color: var(--color-body);
  line-height: 150%
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  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 var(--color-default-medium);
  background-color: var(--color-neutral-primary-soft)
}

.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: var(--color-neutral-secondary-soft);
  padding: 0 .4em;
  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: var(--color-dark-backdrop);
  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 var(--color-dark-backdrop);
  background: var(--color-dark-backdrop);
  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: var(--radius-md);
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: var(--color-danger-strong);
  padding: .5em 1em;
  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 var(--color-danger-strong)
}

.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: 1em;
  align-items: center
}

.dz-new-size {
  font-size: 14px;
  color: var(--color-body-subtle)
}

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

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

.not-valid .dropzone {
  border-color: var(--color-fg-danger)
}

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

.dz-new-filename {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--color-body)
}

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

.dropzone .dz-preview {
  min-height: auto;
  margin: 0;
  width: 100%;
  display: flex;
  padding: 10px;
  border-radius: var(--radius-md);
  background-color: var(--color-neutral-primary);
  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: var(--color-success);
  border-bottom-right-radius: 0;
  overflow: hidden;
  width: 50%;
  background-color: var(--color-neutral-primary);
  left: auto
}

.dropzone .dz-preview .dz-progress .dz-upload {
  border-radius: 0;
  border: 0;
  background: var(--color-success)
}

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

.dropzone .dz-preview .dz-remove {
  border: 1px solid var(--color-fg-danger);
  color: var(--color-fg-danger);
  border-radius: var(--radius-sm);
  background: var(--color-neutral-primary);
  min-width: 80px;
  margin: 0
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: none;
  background-color: var(--color-neutral-secondary)
}

.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: var(--color-danger)
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  background: var(--color-success)
}

.dropzone .dz-preview .dz-error-message:after {
  bottom: -12px;
  border-bottom: 6px solid transparent;
  border-top: 6px solid var(--color-danger-strong);
  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
}

.internship_info .section-fields-group .section-field-wrapper:last-child {
  grid-column-end: 3;
  grid-column-start: 1;
}

.internship_info .section-fields-group .section-field-wrapper:last-child .section-field {
  flex-direction: column;
  gap: 10px;
}

.internship_info .section-fields-group .section-field-wrapper:last-child .field-label-style {
  align-content: flex-start;
}

.internship_info .section-fields-group .section-field-wrapper:last-child .field-helper {
  margin-top: -10px;
}
.section-field.section-field-phone {
  flex-direction: column;
  gap: calc(var(--spacing)*3);
}
@media (max-width: 768px) {
  .flexible-group .section-field-wrapper,
  .flexible-group.skills .section-field-wrapper, .flexible-group.languages .section-field-wrapper {
    width: 100% !important;
  }
}
