.uberstundenrechnerBacklinkBox {
  max-width: 728px;
  margin: auto;
  display: flex;
  justify-content: end;
  align-items: end;
  margin-top: 60px;
  gap: 10px;
}

.uberstundenrechnerBacklinkBox
  .uberstundenrechnerTooltip
  .uberstundenrechnerTooltiptext {
  width: 300px;
  bottom: auto !important;
  top: 100%;
  left: -46px;
}

.uberstundenrechnerBacklinkBox .uberstundenrechnerTooltip {
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in-out;
  padding: 1px 3px;
  opacity: 0.7;
  display: flex;
}

.uberstundenrechnerBacklinkBox
  .uberstundenrechnerTooltip
  .uberstundenrechnerInfoIcone {
  display: flex;
  width: 17px;
}

.uberstundenrechnerBacklinkBox .uberstundenrechnerTooltip:hover {
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.uberstundenrechnerBacklink {
  display: flex;
  align-items: start;
  gap: 5px;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in-out;
  padding: 3px;
  margin-right: 10px;
  color: #7f7f7f;
  font-size: 11px;
  line-height: 13px;
}

.uberstundenrechnerBacklink:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.uberstundenrechnerBacklink > img {
  width: 11px;
  opacity: 0.5;
  transition: all 0.2s;
}

.uberstundenrechnerContainer {
  max-width: 728px;
  margin: 0 auto 60px auto;
  padding: 0 0 0 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in-out;
  display: flex;
  justify-content: center;
}

.uberstundenrechnerLeftPart {
  width: 65%;
  margin-right: 3%;
}

.uberstundenrechnerTitle {
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 33px;
  color: #000000;
  margin-top: 20px;
}

#uberstundenrechnerForm {
  display: flex;
  flex-direction: column;
}

.uberstundenrechnerFormRow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 23px;
  position: relative;
}

.uberstundenrechnerLabel {
  flex: 1;
  margin-right: 10px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.88);
  margin-bottom: 5px;
}

.uberstundenrechnerInput,
.uberstundenrechnerSelect {
  flex: 1;
  padding: 5px 10px !important;
  color: #333 !important;
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 16px;
  gap: 4px;
  width: 386px;
  height: 32px;
  border: 1px solid #d9d9d9 !important;
  border-radius: 8px;
}

.uberstundenrechnerButton {
  width: 100%;
  height: 32px;
  background-color: #170b61;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 8px;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin-bottom: 20px;
}

.uberstundenrechnerButton:hover {
  background-color: #12094d;
}

#uberstundenrechnerResult {
  margin-left: 10%;
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  margin-top: -22px;
  hyphens: auto;
  font-size: 15px;
  line-height: 28px;
  color: #ffffff;
}

.uberstundenrechner-error-message {
  position: absolute;
  margin-top: 54px;
  right: 0;
  font-size: 0.8em;
  color: red;
}

.uberstundenrechnerInputContainer {
  display: flex;
  width: 100%;
  align-items: center;
}

.uberstundenrechnerTooltip {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}

.uberstundenrechnerTooltip .uberstundenrechnerTooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: #f9f9f9;
  color: #333;
  text-align: left;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -127px;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 18px;
  max-height: 120px;
  overflow: auto;
}

.uberstundenrechnerTooltiptext {
  --sb-track-color: #ffffff;
  --sb-thumb-color: #c1c1c1;
  --sb-size: 9px;
}

.uberstundenrechnerTooltiptext::-webkit-scrollbar {
  width: var(--sb-size);
}

.uberstundenrechnerTooltiptext::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 4px;
}

.uberstundenrechnerTooltiptext::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 4px;
}

@supports not selector(::-webkit-scrollbar) {
  .uberstundenrechnerTooltiptext {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

.uberstundenrechnerTooltip:hover .uberstundenrechnerTooltiptext {
  visibility: visible;
  opacity: 1;
}

.uberstundenrechnerTooltip .info-icon {
  width: 16px;
  height: 16px;
  fill: #636363;
  cursor: pointer;
}

.uberstundenrechnerRightPart {
  width: 47%;
  background: #170b61;
  position: relative;
  border-radius: 0px 10px 10px 0px;
}

.uberstundenrechnerRightPart > div img {
  position: relative;
  width: 64px;
  height: 54px;
  top: 27px;
  left: -44px;
}

.uberstundenrechnerRightPart > img {
  width: 58%;
  margin-top: 20%;
  margin-left: 21%;
}

.uberstundenrechnerResultsBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-right: 5%;
}

.uberstundenrechnerRightPart > div:first-of-type {
  width: 135px;
}

/******** width 691 ********/

.width691uberstundenrechnerContainer .uberstundenrechnerTitle {
  text-align: center;
}

.width691uberstundenrechnerContainer {
  padding: 0 20px 0 20px;
  flex-direction: column;
  align-items: center;
}

.width691uberstundenrechnerContainer .uberstundenrechnerLeftPart {
  width: 100%;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.width691uberstundenrechnerContainer .uberstundenrechnerRightPart {
  width: 80%;
  height: 94px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 360px;
  border-radius: 12px;
  padding: 0 20px 0 20px;
  position: absolute;
}

.width691uberstundenrechnerContainer .uberstundenrechnerRightPart > img {
  display: none;
}

.width691uberstundenrechnerContainer .uberstundenrechnerRightPart > h4 {
  margin-left: 0;
}

.width691uberstundenrechnerContainer #uberstundenrechnerResult {
  width: 77%;
  margin: auto;
  margin-right: 0;
  margin-left: 0;
}

.width691uberstundenrechnerContainer .uberstundenrechnerButton {
  width: 384px;
  height: 32px;
  background: #170b61;
  border-radius: 8px;
  margin-left: auto;
  margin-right: 25px;
  display: block;
  margin-bottom: 53px;
}

.width691uberstundenrechnerContainer .uberstundenrechnerRightPart > div img {
  left: -31px;
  top: 3px;
  width: 145px;
  height: 111px;
}

.width691uberstundenrechnerContainer .uberstundenrechnerInputContainer {
  width: auto;
}

.width691uberstundenrechnerContainer
  .uberstundenrechnerTooltip
  .uberstundenrechnerTooltiptext {
  left: -400%;
}

/******** width 650 ********/

.width650uberstundenrechnerContainer .uberstundenrechnerRightPart > h4 {
  font-size: clamp(20px, 3vw, 25px);
}

/******** width 607 ********/

.width607uberstundenrechnerContainer .uberstundenrechnerRightPart {
  width: 77%;
}

/******** width 590 ********/

.width590uberstundenrechnerContainer .uberstundenrechnerFormRow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.width590uberstundenrechnerContainer .uberstundenrechnerLabel {
  margin-bottom: 8px;
  width: 100%;
}

.width590uberstundenrechnerContainer .uberstundenrechnerInputContainer {
  display: flex;
  width: 100%;
  align-items: center;
}

.width590uberstundenrechnerContainer .uberstundenrechnerInput,
.width590uberstundenrechnerContainer .uberstundenrechnerSelect {
  flex: 1;
  width: auto;
}

.width590uberstundenrechnerContainer .uberstundenrechnerTooltip {
  margin-left: 8px;
}

.width590uberstundenrechnerContainer .uberstundenrechnerRightPart {
  width: 77%;
  margin-top: 450px;
}

.width590uberstundenrechnerContainer .uberstundenrechner-error-message {
  margin-top: 60px;
}

.width590uberstundenrechnerContainer .uberstundenrechnerButton {
  width: 100%;
  margin-left: 0;
  margin-top: 10px;
}

/******** width 481 ********/

.width481uberstundenrechnerContainer .uberstundenrechnerRightPart {
  height: auto;
}

.width481uberstundenrechnerContainer #uberstundenrechnerResult {
  width: 100%;
}

.width481uberstundenrechnerContainer
  .uberstundenrechnerRightPart
  > div:first-of-type {
  display: none;
}

/******** width 385 ********/

.width385uberstundenrechnerContainer .uberstundenrechner-error-message {
  font-size: 12.5px;
}

.width385uberstundenrechnerContainer .uberstundenrechnerResultsBox {
  padding-right: 0;
}

.width385uberstundenrechnerContainer .uberstundenrechnerRightPart {
  width: 80%;
}

.width385uberstundenrechnerContainer .uberstundenrechnerTitle {
  font-size: 24px;
}
