.containerSection {
    padding: 15px 20px 15px 20px;
    background-color: rgb(250, 250, 250);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}
.normalMarginTop {
    margin-top: 20px;
}
.normalMessage{
    text-align: center;
    font-size: 1.5em;
    color: #046a38;
}
.textCenter{
    text-align: center;
}
.marginTopNormal{
    margin-top: 10px;
}
.breakLineWithCarriageReturn{
    white-space: pre-line;
}
.arpButtonPrimary.pressEffect{
    position: sticky;
}
.arpButtonPrimary {
  padding: 7px;
  overflow: hidden;
  border-width: 0;
  outline: none;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  background-color: #75ba21;
  color: #ecf0f1;
  transition: background-color .3s;
}

.arpButtonPrimary.fakeButton {
    color: #ecf0f1 !important;
    text-decoration: none !important;
}

.arpButtonPrimary:hover, .arpButtonPrimary:focus {
  background-color: #046a38;
}

.arpButtonPrimary > * {
  position: relative;
}

.arpButtonPrimary span {
  display: block;
  padding: 1px;
}

.arpButtonPrimary.pressEffect:not([disabled]):before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  display: block;
  width: 0;
  padding-top: 0;

  border-radius: 100%;

  background-color: rgba(236, 240, 241, .3);

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.arpButtonPrimary:active:before {
  width: 120%;
  padding-top: 120%;

  transition: width .2s ease-out, padding-top .2s ease-out;
}

.arpButtonPrimary:disabled {
    background-color: rgba(200, 200, 200, 1);
    color: rgba(60, 60, 60, 1);
}

.spinner {
  width: 70px;
  height: 70px;
  margin: auto;
}

.spinner svg {
  animation: rotate 1.5s linear infinite;
  height: 100%;
  width: 100%;
}

.spinner circle {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  animation:
    dash 1.5s ease-in-out infinite 0s,
    color 6s ease-in-out infinite -0.75s;
  stroke-linecap: round;
  fill: none;
  stroke-width:3;
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #75BA21;
  }
  40% {
    stroke: #FDE021;
  }
  70% {
    stroke: #046A38;
  }
}