.type-tile__container {
  width: 100%;
  height: 54px;
  background-color: white;
  border-radius: 999px;
  border: 2px dashed #0197F6;
  padding: 6px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.type-tile__container.selected {
  border: 4px solid #0197F6;
  padding: 4px;
}
.type-tile__title {
  text-align: center;
  font-size: 14px;
  color: #2F3742;
  font-weight: 600;
  margin-right: 14px;
}
.type-tile__image {
  background-color: #EEFBF6;
  width: 38px;
  height: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.type-tile__image > img {
  width: 140%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-request__type-title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 8px 0 16px;
}
.service-request__type-tile-wrapper {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 10px;
  justify-content: center;
}
.service-request__type-tile-wrapper > :not(:last-child) {
  width: calc(50% - 5px);
}
.service-request__type-description {
  color: #4E5C6E;
  margin-top: 16px;
  line-height: 22px;
  font-size: 12px;
}
.service-request__type-description > div {
  font-size: 14px;
  font-weight: bold;
}
.service-request__type-selected-image {
  text-align: center;
  margin-top: -0.625rem;
  overflow: hidden;
  width: calc(100% + 20px);
  margin-right: -10px;
}
.service-request__type-selected-image > img {
  width: calc(100% + 50px);
  margin-right: -20px;
  height: auto;
}
.service-request__type-agreements {
  margin-top: 20px;
  display: flex;
}
.service-request__type-agreements-link {
  margin-right: 8px;
}
.service-request__type-actions {
  display: flex;
  align-items: center;
  margin-top: 32px;
}
.service-request__type-actions-divider {
  border-top: 2px dashed #949CA7;
  flex: 1;
}
.service-request__type-actions-fake-btn {
  color: #949CA7;
  display: flex;
}
