.dwload {
  position: relative;
  cursor: pointer;
}
.dwload::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  height: calc(100% + 32px);
  width: 50%;
  background-color: #2e2e2e;
  border-radius: 20px;
  transform: translateY(-50%);
  z-index: 1;
}
.dwload::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(50% + 24px);
  height: calc(100% + 48px);
  background-color: #b8d932;
  border-radius: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 2;
}
.dwload > div {
  position: relative;
  display: flex;
  padding: 14px;
  align-items: center;
  border: 1px solid #ffffff;
  border-radius: 10px;
  background-color: #1c1c1c;
  transition: all 0.3s ease;
  z-index: 3;
}
.dwload:hover {
  text-decoration: none;
}
.dwload:hover:before {
  left: 10%;
  width: calc(90% + 24px);
}
.dwload:hover > div {
  border-color: #b8d932;
}
.dwload:hover .dwload__icon svg {
  fill: #b8d932;
}
.dwload:hover .dwload__name,
.dwload:hover .dwload__description {
  color: #b8d932;
}
.dwload__icon {
  margin-right: 12px;
  width: 50px;
}
.dwload__icon svg {
  fill: #ffffff;
  transition: all 0.3s ease;
}
.dwload__name {
  padding: 0;
  margin: 0;
  font: normal normal normal 16px/20px "Acrom";
  color: #ffffff;
  transition: color 0.3s ease;
}
.dwload__description {
  padding: 0;
  margin: 0;
  font: normal normal normal 12px/14px "Acrom";
  color: #ffffff;
  transition: color 0.3s ease;
}

.form__body > div {
    margin-right: 50px;
}

.b24-widget-button-position-bottom-right {
  right: 10px !important;
}