﻿.profile-top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 28px 28px 28px 47px;
  background-color: #eeeeee;
  border-radius: 14px;
}

.profile-right {
  display: flex;
  flex-grow: 1;
}

.profile-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-rating-title {
  font-family: "Manrope-Medium", Helvetica;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 8px;
  color: #434343;
}

.profile-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d9d9d9;
  height: 180px;
  width: 180px;
  border-radius: 90px;
}

.profile-avatar-image {
  height: 180px;
  width: 180px;
  border-radius: 90px;
}

.profile-avatar-letters {
  font-family: Montserrat;
  font-size: 96px;
  font-weight: 700;
  line-height: 144px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #797979;
}

span.notranslate.rz-dropdown-trigger-icon.rzi.rzi-chevron-down {
  display: none;
}

.profile-input-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.profile-textarea {
  height: 240px !important;
}

.profile-input {
  display: block;
  width: 100%;
  font-family: "Manrope-Regular", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border-radius: 7px;
  border: 0;
  background-color: #ffffff;
  padding: 8px;
  padding-left: 20px;
  height: 50px;
}

.profile-input::-ms-input-placeholder {
  color: #b4b4b4;
}

.profile-input:focus-visible {
  border: 0;
  outline: none;
}

.profile-select {
  display: block;
  width: 100%;
  font-family: "Manrope-Regular", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border-radius: 7px;
  border: 0;
  background-color: #ffffff;
  padding: 8px;
  padding-left: 20px;
  height: 50px;
}

.profile-select:focus-visible {
  border: 0;
  outline: none;
}

.profile-checkbox-input-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.profile-checkbox-input {
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  width: 20px;
  height: 20px;
  background: url("/svg/check-hollow.svg") no-repeat center center;
  background-size: contain;
  transition: background 0.3s ease;
}

.profile-checkbox-input:checked {
  background: url("/svg/check-checked.svg") no-repeat center center;
}

.profile-checkbox-input:hover:not(:checked) {
  background: url("/svg/check-hover.svg") no-repeat center center;
}

.profile-checkbox-input-label {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: black;
}

.profile-file-text {
  font-size: 18px;
  font-family: "Manrope-Medium", Helvetica;
  font-weight: 500;
  color: #434343;
  margin-bottom: 15px;
  align-self: flex-start;
}

.profile-file-buttons {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  margin-bottom: 20px;
}

.profile-file-button {
  padding: 8px;
  width: 100%;
  background-color: #ffffff;
  font-family: "Manrope-Medium", Helvetica;
  font-weight: 500;
  font-size: 16px;
  border-radius: 7px;
  color: #414141;
  line-height: 34px;
}

.profile-button {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #434343;
  padding: 19px;
  width: 315px;
  border-radius: 50px;
  background-color: #c6ed33;
  cursor: pointer;
  text-align: center;
}
.profile-button:hover {
  color: #434343;
}

.profile-button-mobile {
  display: none;
}

@media (max-width: 600px) {
  .profile-top {
    flex-direction: column-reverse;
    gap: 7px;
    align-items: center;
    padding: 10px;
  }

  .profile-button.profile-button-mobile {
    display: block;
    width: 100%;
  }

  .profile-right {
    width: 100%;
  }

  .profile-button {
    font-size: 14px;
    line-height: 16px;
    padding: 10px;
    width: 100%;
  }

  .profile-input,
  .profile-select {
    font-size: 14px;
    line-height: 34px;
    padding: 1px 16px;
    height: 36px;
  }

  .profile-input-wrapper {
    margin-bottom: 7px;
  }

  .profile-file-text {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .profile-file-buttons {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 7px;
  }

  .profile-file-button {
    padding: 5px;
    font-size: 14px;
    line-height: 24px;
  }

  .profile-rating-title {
    margin-top: 0;
  }
}
