.ds-2col-stacked-fluid > .group-left {
  float: none; /* LTR */
  width: 100%;
}

.ds-2col-stacked-fluid > .group-right {
  float: none; /* LTR */
  width: 100%;
}
.ds-2col-stacked-fluid > .group-right h3 {
  font-size: 110%;
}

.ds-2col-stacked-fluid > .group-footer {
  padding-top: 0.5rem !important;
  padding-bottom: 1rem !important;
}

@media screen and (min-width: 768px) {
  .ds-2col-stacked-fluid > .group-left {
    float: left; /* LTR */
    width: 50%;
    padding-right: 0.5rem !important;
  }
  .ds-2col-stacked-fluid > .group-right {
    float: right; /* LTR */
    width: 50%;
    padding-left: 0.5rem !important;
  }
}
.varicon.varicon-refresh:before {
  display: block;
  width: 28px;
  height: 28px;
  content: " ";
  background-image: url("../../images/icons/refresh.svg");
  background-size: 28px 28px;
}
.varicon.varicon-spin:before {
  -webkit-animation-name: spin;
  -moz-animation-name: spin;
  -ms-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 4000ms;
  -moz-animation-duration: 4000ms;
  -ms-animation-duration: 4000ms;
  animation-duration: 4000ms;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
