.container-fluid.dnd-header {
  position: relative;
  overflow: hidden;
}
{% if module.rounded_header == "rounded_header" %}
.rounded-header {
  height: 60px;
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  -webkit-border-top-left-radius: 30px;
  -webkit-border-top-right-radius: 30px;
  -moz-border-radius-topleft: 30px;
  -moz-border-radius-topright: 30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
{% endif %}