* {
  font-family: 'Inter' !important;
}

.content {
  display:flex;
  justify-content: center;
  padding: 0px;
}
.container {
  padding-left: 0px !important;
  padding-right: 0px !important;
  max-width: 90vw !important;
  background: #e9e9e9;
}

.container-home {
  max-width: min-content;
}

.body-content {
  padding: 0px !important;
}

.service-container {
  width: 95vw;
}

.service-title-wrapper {
  display: flex;
  align-items: end;
  position: relative;
  top: 10px;
}

.service-title {
  padding-top: 5px;
  font-family: "Inter", serif;
  font-weight: 500;
  padding-inline: 25px;
  color: white;
  width: fit-content;
  background-color: #125ad0;
  border: 10px solid #125ad0;
  border-bottom: 0;
  border-radius: 30px 30px 0px 0px;
  font-size: 27px;
  text-transform: uppercase;
  text-wrap-mode: nowrap;
}

.service-wrapper {
  min-width: 60vw;
  max-width: 70vw;
  border: 25px solid #125ad0;
  background-color: #125ad0;
  border-radius: 0px 30px 30px 30px;
}

.service-body {
  background-color: #ffffff;
  width: 100%;
  padding: 1rem;
  border-radius: 20px;
}

.triangle {
  width: 25px;
  height: 25px;
  position: relative;
  right: 10px;
  border-left: 10px solid #125ad0;
  border-bottom: 10px solid #125ad0;
  border-bottom-left-radius: 21px;
}

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 768px) {
  .service-wrapper {
    max-width: 95vw;
  }
}

@media screen and (max-width: 480px) {
  .service-wrapper {
    border: 10px solid #125ad0;
  }

  .service-title {
    padding-top: 0;
    border-bottom: 10px solid #125ad0;
    font-size: 20px;
    padding-inline: 10px;
  }

  #content-main {
    padding: 0 !important;
  }

}

@media screen and (max-width: 375px) {

}

@media screen and (max-width: 320px) {
  .service-title {
    padding-top: 0;
    font-size: 18px;
  }
}

.alert {
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Inter';
  border: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-success {
  background-image: url("/content/image/alerts/alert-good.svg");
  height: 60px;
  font-size: 20px;
  background-color: transparent;
  color: #17C809;
  background-repeat: round;
  padding: 14px;
}

.alert-danger {
  background-image: url("/content/image/alerts/alert-bad.svg");
  height: 60px;
  font-size: 20px;
  background-color: transparent;
  color: #C80909;
  margin-bottom: 0;
  background-repeat: round;
  padding: 14px;
}

.error-banner{
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFD7D7; /* светло-розовый фон как у alert-danger */
  border: 1px solid #C80909; /* красная рамка */
  border-radius: 12px;
  padding: 16px 20px 16px 96px; /* слева место под круг */
  color: #C80909; /* цвет текста как у alert-danger */
  overflow: hidden; /* маска для круга и картинки */
}

.success-banner{
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #DEFFD7; /* светло-розовый фон как у alert-danger */
  border: 1px solid #17C809; /* красная рамка */
  border-radius: 12px;
  padding: 16px 20px 16px 96px; /* слева место под круг */
  color: #17C809; /* цвет текста как у alert-danger */
  overflow: hidden; /* маска для круга и картинки */
  margin-bottom: 5px;
}

.error-banner__left, .success-banner__left{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 96px; /* область под круг/картинку */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.error-banner__circle{
  left: -30%;
  bottom: -40%;
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #BA8989;
  z-index: 0;
}

.success-banner__circle{
  left: -30%;
  bottom: -40%;
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #89BA93;
  z-index: 0;
}

.error-banner__img, .success-banner__img{
  bottom: 5%;
  left: 65%;
  position: relative;
  width: 135px;
  object-fit: contain;
  z-index: 1;
}

.error-banner__content, .success-banner__content{ 
  flex: 1 1 auto;
  text-align: center;
  font-family: 'Inter';
  font-size: 20px;
}


@media (max-width: 1024px){
  .error-banner__circle, .success-banner__circle {
      left: -110%;
      bottom: -40%;
  }
  .error-banner__img, .success-banner__img {
      left: 0;
  }
  .error-banner__content, .success-banner__content{ 
      font-size: 18px;
  }
  .service-wrapper {
      min-width: 90vw !important;
  }
}