.strategies {
  display: block;
  padding: 20px 0 0 0;
  font-size: 12px;
  text-align: center;
}

.strategies_header {
  display: block;
}

.strategies_header_title {
  display: inline-block;
  padding: 8px;
  background: white;
  color: #1E1E2899;
  font-size: 16px;
  text-transform: uppercase;
}

.strategies_header::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  transform: translate(-50%, -50%);
  border-top: 1px solid #1E1E2899;
  content: '';
}

.strategies .button img {
  display: block;
  position: relative;
  top: 50%;
  margin: auto;
  object-fit: contain;
  transform: translateY(-50%);
}

.unti-container {
  position: relative;
}

.unti-main-button {
  display: flex;
  width: 100%;
  padding: 0;
  border: 1px solid #e4e7eb;
  border-radius: 12px;
  background: inherit;
  background-color: white;
  font: inherit;
  font-family: 'Roboto';
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.unti-providers-slider {
  box-sizing: border-box;
  display: flex;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 32px;
  overflow-y: auto;
  transform: translateX(100%);
  background: white;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.unti-providers-slider.open {
  transform: translateX(0);
}

.unti-providers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.unti-providers-header h3 {
  flex: 1;
  margin: 0;
}

.unti-close-button {
  display: flex;
  position: absolute;
  right: 20px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f5f5f5;
  color: #666;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.unti-close-button:hover {
  background-color: #e5e5e5;
  color: #333;
}

.unti-providers-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
}

.unti-provider-button {
  transform: translateY(15px);
  opacity: 0;
}

.unti-provider-button p {
  color: #1E1E28;
  font-weight: 700;
  line-height: 24px;
}

.unti-providers-slider.open .unti-provider-button {
  animation: slideInUp 0.5s ease forwards;
}

@keyframes slideInUp {
  from {
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.unti-providers-header {
  transform: translateY(-10px);
  opacity: 0;
}

.unti-providers-slider.open .unti-providers-header {
  animation: slideInDown 0.4s ease forwards;
  animation-delay: 0.1s;
}

@keyframes slideInDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .unti-providers-slider {
    padding: 30px 20px;
  }
  
  .unti-providers-header {
    max-width: 100%;
    margin-bottom: 30px;
  }

  
  .unti-providers-list {
    max-width: 100%;
    gap: 12px;
  }
  
  .unti-provider-button {
    min-height: 50px;
  }
  
  .unti-provider-button p {
    padding-right: 8px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .unti-providers-slider {
    padding: 20px 15px;
  }
  
  .unti-providers-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  
  .unti-providers-header h4 {
    font-size: 18px;
  }
  
  .unti-close-button {
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
  
  .unti-provider-button {
    min-height: 45px;
  }
  
  .unti-provider-button p {
    padding-right: 6px;
    font-size: 14px;
  }
}
