:root, * {
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
	--space-md: 2rem;
	--component-padding: var(--space-md);
	fill: var(--color-success);
	--color-success:green;
}
@media all and (min-width: 48rem) {
.max-width-adaptive, .max-width-adaptive-lg, .max-width-adaptive-md, .max-width-adaptive-sm, .max-width-adaptive-xl {
    max-width: 48rem;
}
}
.container {
    width: calc(100% - 2*var(--component-padding));
    margin-left: auto;
    margin-right: auto;
	font-family:'Roboto';
}
.text-center {
    text-align: center;
}
.thank-you {
  position: relative;
  z-index: 1;
}
.padding-y-xxl {
    padding-top: 50px;
    padding-bottom: 0px;
}
.thank-you__icon {
  width: 100px;
  height: 100px;
}
.margin-bottom-sm {
    margin-bottom: 1.125rem;
}
.thank-you__icon-group {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: thank-you-icon 0.5s var(--ease-out);
          animation: thank-you-icon 0.5s var(--ease-out);
}
.thank-you__icon-group > *:last-child {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  stroke-dashoffset: 55;
  stroke-dasharray: 55;
  -webkit-animation: thank-you-icon-check 0.5s var(--ease-out) forwards;
          animation: thank-you-icon-check 0.5s var(--ease-out) forwards;
}
.btn {
    background:hsl(250, 84%, 54%);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.2s ease;
    will-change: transform;
    padding:  .8rem 1.125rem;
    font-size: 1em;
    border-radius:  0.25em;
    font-family: 'OpenSans-Regular', sans-serif;
}
.btn:hover {
    background:hsl(250, 84%, 46%);
    color: #fff;
}
.flex-wrap {
	display:flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	
}
.text-xxxl {
  font-family: 'Asty-Regular', sans-serif!important;
  font-size:1.5em!important;
}
.text-xxxlb {
  font-family: 'Asty-Medium', sans-serif!important;
  font-size:1.25em!important;
}

@-webkit-keyframes thank-you-icon {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes thank-you-icon {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes thank-you-icon-check {
  from {
    stroke-dashoffset: 55;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes thank-you-icon-check {
  from {
    stroke-dashoffset: 55;
  }
  to {
    stroke-dashoffset: 0;
  }
}