.order-actions-tabs__desc{
  margin-bottom: 30px;
}
.order-actions-tabs__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  overflow: hidden; var(--color-green);
  width: fit-content;
  justify-content: center;
  width: 100%;
}
.order-actions-tabs__tab {
  background: #fff;
  color: var(--color-green);
  border: none;
  font-size: 16px;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-top: 1px solid var(--color-green);
border-bottom: 1px solid var(--color-green);
border-left: 1px solid var(--color-green);
white-space: nowrap;
}
.order-actions-tabs__tab:last-child {
  border-right: 1px solid var(--color-green);
  border-radius: 0 10px 10px 0;
}
.order-actions-tabs__tab:first-child {
  border-radius: 10px 0 0 10px;
}
.order-actions-tabs__tab.active {
 background: var(--color-gradient);
  color: var(--color-white);
}
.order-actions-tabs__content {
  display: none;
}
.order-actions-tabs__content.active {
  display: block;
}
.order-actions-tabs__steps {
  display: grid;
  gap: 0;
  background: var(--color-light-green);
  border-radius: 16px;
  grid-template-columns: 1fr 1fr 1fr;
}
.order-actions-tabs__steps.twocolpor{
  grid-template-columns: 1fr 1fr;
}
.order-actions-tabs__step {
  flex: 1;
  padding: 32px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.order-actions-tabs__step:last-child {
  border-right: none;
}
.order-actions-tabs__step-icon {
  min-width: 56px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-actions-tabs__step-icon-wrap {
  position: relative;
  width: 54px;
  height: 51px;
  min-width: 54px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-actions-tabs__step-icon {
  width: 54px;
  height: 51px;
  display: block;
}
.order-actions-tabs__step-num {
  position: absolute;
  left: 0;
  top: -5px;
  width: 54px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-medium-green);
  pointer-events: none;
  user-select: none;
}
.order-actions-tabs__step-title {
  font-size: 20px;
  margin-bottom: 4px;
}
.order-actions-tabs__step-desc {
  font-size: 18px;
 line-height: 140%;
}
.order-actions-tabs__desc ul,
.order-actions-tabs__desc ol {
  padding-left: 20px;
}
.order-actions-tabs__desc ul li {
  list-style: disc;
}
.order-actions-tabs__desc ul ol {
  list-style: decimal;
}
@media (max-width: 900px) {
.order-actions-tabs__step{
  flex-direction: column;
}
}

@media (max-width: 768px) {
.order-actions-tabs__tabs {
  overflow: auto;
  justify-content: flex-start;
}
}

@media (max-width: 576px) {
.order-actions-tabs__steps{
  grid-template-columns: 1fr;
}
.order-actions-tabs__step{
  padding: 15px;
}
.order-actions-tabs__step-title {
  font-size: 18px;
}
.order-actions-tabs__step-desc {
  font-size: 16px;
}
}