/*$f: "brandon-grotesque", "Brandon Grotesque", sans-serif;*/
/**, *:before, *:after { box-sizing: border-box; }
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }
*:focus { outline: none!important; }
::selection { background: none; }
a { cursor: pointer; }
body, html { height: 100%; }*/
/*body {
	display: flex;
	align-content: center;
	justify-content: center;
	background: #1E3647;
	color: white;
	font-family: $f;
}*/
/*ul {
	display: flex;
	align-content: center;
	justify-content: center;
	width: 100%;
	list-style: none;
}*/
.flash {
  color: white;
  margin-top: 15vh;
  padding-top: 48px;
}
.flash .modal-header {
  border-bottom: none;
  padding: 0;
}
.flash .modal-body {
  padding: 0 0.5rem;
}
.flash .modal-footer {
  border-top: none;
}
.flash svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flash .bg > div {
  position: absolute;
  z-index: -1;
}
.flash .bg .bg-icon {
  top: -52px;
  left: calc(50% - 52px);
  width: 104px;
  height: 104px;
  /*background: #4B5E6B;*/
  border-radius: 100%;
}
.flash .bg .bg-btns {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  position: absolute;
  bottom: -38px;
  left: calc(50% - 88px);
  width: 176px;
}
.flash .bg .bg-btns:before, .flash .bg .bg-btns:after {
  content: "";
  display: block;
  width: 76px;
  height: 76px;
  /*background: #4B5E6B;*/
  border-radius: 100%;
}
.flash .inside {
  /*border: 4px solid #4B5E6B;*/
  border-radius: 6px;
  height: 230px;
  padding: 48px 25px 0;
}
.flash h2 {
  margin-top: 10px;
  font-size: 26px;
  font-weight: 800;
  /*line-height: 52px;*/
  line-height: 40px;
  text-align: center;
}
.flash p {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.flash .btns {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  position: absolute;
  bottom: -34px;
  left: calc(50% - 84px);
  width: 168px;
}
.flash button {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 100%;
  padding: 0;
  font-family: "Noto Sans", Georgia, Helvetica, sans-serif;
}
.flash button svg {
  will-change: transform;
  transition: all 300ms ease-out;
  transform-origin: center center;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: white;
}
.flash button span {
  display: block;
  position: absolute;
  bottom: -26px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-transform: uppercase;
}
.flash button:hover svg, .flash button:focus svg {
  transition: all 400ms cubic-bezier(0.6, 0, 0.1, 2);
  transform: scale(1.2);
}
.flash button:active svg {
  transition: all 150ms ease-in;
  transform: scale(0.9);
}
.flash button:focus {
  outline: none !important;
}
.flash .icon {
  position: absolute;
  top: -48px;
  left: calc(50% - 48px);
  width: 96px;
  height: 96px;
  border-radius: 100%;
  padding: 6px;
}
.flash .icon svg {
  width: 84px;
  height: 84px;
}
.flash.success .inside, .flash.success .icon, .flash.success button {
  /*background-color: #5FB67D;*/
  background-color: #0d8235;
}
.flash.working {
  /*button {
      pointer-events: none;
      svg {
          background: rgba(white, .5);
      }
  }*/
}
.flash.working .inside, .flash.working .icon, .flash.working button {
  /*background-color: #E1C55E;*/
  background-color: #ea9922;
}
.flash.error .inside, .flash.error .icon, .flash.error button {
  /*background-color: #C46465;*/
  background-color: #ce1b1d;
}
.flash.success .inside, .flash.success .icon, .flash.success button, .flash.working .inside, .flash.working .icon, .flash.working button, .flash.error .inside, .flash.error .icon, .flash.error button {
  opacity: 0.9;
}
.flash.success .bg .bg-btns, .flash.success .btns, .flash.working .bg .bg-btns, .flash.working .btns, .flash.error .bg .bg-btns, .flash.error .btns {
  justify-content: center;
}
.flash.success .bg .bg-btns:after, .flash.success .btns:after, .flash.working .bg .bg-btns:after, .flash.working .btns:after, .flash.error .bg .bg-btns:after, .flash.error .btns:after {
  display: none;
}
.flash .icon circle:not(:first-child) {
  transform: scale(0);
  animation: tsfm 100ms ease-out both;
}
.flash .icon circle:nth-child(3) {
  transform-origin: 30px 42px;
}
.flash .icon circle:nth-child(4) {
  transform-origin: 54px 42px;
}
.flash.success, .flash.working {
  opacity: 0;
  visibility: hidden;
  transform-origin: left top;
  /*transform: rotateX(30deg) rotateY(30deg) translateY(300px) translateZ(0);*/
  will-change: opacity, transform, visibility;
  animation: tsfm-op 750ms cubic-bezier(0, 0.6, 0.3, 1) both;
}
.flash.success {
  transform: translateY(-100vw);
  animation-delay: 250ms;
}
.flash.success .icon path {
  stroke-dasharray: 26.661;
  stroke-dashoffset: 26.661;
  will-change: stroke-dashoffset;
  animation: sdo 250ms ease-out 700ms both;
}
.flash.success .icon circle:nth-child(3) {
  animation-delay: 500ms;
}
.flash.success .icon circle:nth-child(4) {
  animation-delay: 600ms;
}
.flash.success button span {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  animation: tsfm-op 500ms cubic-bezier(0, 0.75, 0.25, 1) both;
}
.flash.success button:nth-child(1) polyline {
  stroke-dasharray: 36.1;
  stroke-dashoffset: 36.1;
  will-change: stroke-dashoffset;
  animation: sdo 350ms ease-out 900ms both;
}
.flash.success button:nth-child(1) span {
  animation-delay: 1400ms;
}
.flash.success button:nth-child(2) polyline {
  stroke-dasharray: 24.1;
  stroke-dashoffset: 24.1;
  will-change: stroke-dashoffset;
  animation: sdo 250ms ease-out 1000ms both;
}
.flash.success button:nth-child(2) line {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  will-change: stroke-dashoffset;
  animation: sdo 250ms ease-out 1100ms both;
}
.flash.success button:nth-child(2) span {
  animation-delay: 1500ms;
}
.flash.working {
  transform: translateY(100vw);
  animation-delay: 500ms;
}
.flash.working .icon circle:nth-child(2) {
  stroke-dasharray: 43.982;
  stroke-dashoffset: 43.982;
  will-change: stroke-dashoffset;
  animation: sdo 400ms ease-out 950ms both;
  transform: scale(1);
}
.flash.working .icon circle:nth-child(3) {
  animation-delay: 750ms;
}
.flash.working .icon circle:nth-child(4) {
  animation-delay: 850ms;
}
.flash.working button circle {
  opacity: 0;
  will-change: opacity;
}
.flash.working button circle:nth-child(1) {
  animation: ellipsis-1 900ms ease-out infinite forwards;
}
.flash.working button circle:nth-child(2) {
  animation: ellipsis-2 900ms ease-out infinite forwards;
}
.flash.working button circle:nth-child(3) {
  animation: ellipsis-3 900ms ease-out infinite forwards;
}
.flash.error {
  opacity: 0;
  animation: jitter 225ms ease-in-out 2 both 750ms;
}
.flash.error .icon path {
  stroke-dasharray: 26.661;
  stroke-dashoffset: 26.661;
  will-change: stroke-dashoffset;
  animation: sdo 250ms ease-out 1200ms both;
}
.flash.error .icon circle:nth-child(3) {
  animation-delay: 1000ms;
}
.flash.error .icon circle:nth-child(4) {
  animation-delay: 1100ms;
}
.flash.error button {
  transform-origin: center center;
  transform: rotate(90deg);
  will-change: transform;
  animation: tsfm 570ms ease-out 1000ms both;
}
.flash.error button polyline {
  stroke-dasharray: 18.1;
  stroke-dashoffset: 18.1;
  will-change: stroke-dashoffset;
  animation: sdo 200ms ease-out 1300ms both;
}
.flash.error button path {
  stroke-dasharray: 66.376;
  stroke-dashoffset: 66.376;
  will-change: stroke-dashoffset;
  animation: sdo 650ms ease-out 1400ms both;
}
.flash.error button span {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  animation: tsfm-op 500ms cubic-bezier(0, 0.75, 0.25, 1) 1700ms both;
}

/*body {
	align-items: flex-start;
} */
/*ul {
	flex-flow: row wrap;
	padding: 12px 12px 78px;
	li {
		padding: 98px 12px 12px;
		&:nth-child(1) {
			padding-top: 74px;
		}
	}
}*/
/*@media only screen and (min-width: 648px) {
	ul {
		li {
			// padding: 12px;
			&:nth-child(2) {
				padding-top: 74px;
			}
		}
	}
}*/
/*@media only screen and (min-width: 960px) {
	body {
		align-items: center;
	}
	ul {
		align-items: center;
		padding: 12px;
		li {
			padding: 12px;
			&:nth-child(1), &:nth-child(2) {
				padding-top: 12px;
			}
		}
	}
}*/
@media (max-width: 575px) {
  .flash .inside {
    height: 16rem;
  }

  .flash h2 {
    margin-top: 1rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .flash p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 412px) and (max-width: 575px) {
  .flash .inside {
    height: 15rem;
  }
}
@keyframes tsfm {
  to {
    transform: none;
  }
}
@keyframes op {
  to {
    opacity: 1;
  }
}
@keyframes sdo {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes ellipsis-1 {
  0% {
    opacity: 0;
  }
  20%, 95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ellipsis-2 {
  0%, 20% {
    opacity: 0;
  }
  40%, 95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ellipsis-3 {
  0%, 40% {
    opacity: 0;
  }
  60%, 95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes tsfm-op {
  10% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
@keyframes jitter {
  0% {
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  10% {
    transform: translateX(4px) translateY(4px);
    opacity: 0.8;
  }
  20% {
    transform: translateX(0px) translateY(0px);
    opacity: 0.47;
  }
  30% {
    transform: translateX(0px) translateY(4px);
    opacity: 0.3;
  }
  70% {
    transform: translateX(-2px) translateY(2px);
    opacity: 0.96;
  }
  80% {
    transform: translateX(0px) translateY(-4px);
    opacity: 0.9;
  }
  90% {
    transform: translateX(2px) translateY(-4px);
    opacity: 0.81;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

/*# sourceMappingURL=flash-messages.css.map */
