@keyframes loadingSpin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
	p {
		font-size: 1.4em;

		//	Tablet
	    .minWidth(768px, {
	    	font-size: 1.6em;
	    });

	    //	Desktop
	    .minWidth(1280px, {
	    	font-size: 1.8em;
	    });
	}
*/
.c-fixed-subscribe {
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  width: 38rem;
  max-width: 100%;
  z-index: 100;
  transition: visibility 0s ease,
			opacity 0.4s ease,
			transform .4s ease;
}
.c-fixed-subscribe.active {
  transform: translate(0, -50%);
}
@media all and (max-width: 767px) {
  .is-touching .c-fixed-subscribe:not(.active),
  .is-scrolling .c-fixed-subscribe:not(.active) {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s ease 0.4s,
					opacity 0.4s ease,
					transform .4s ease;
  }
}
@media all and (max-width: 767px) {
  .c-fixed-subscribe {
    max-width: calc(100% - 5.4rem);
  }
}
.c-fixed-subscribe__toggles {
  display: flex;
  transform: rotate(-90deg) translateY(-100%);
  height: 3.4rem;
  position: absolute;
  right: 100%;
  top: 0;
  transform-origin: top right;
  box-shadow: 0.5rem -0.4rem 0.4rem -0.2rem rgba(0, 0, 0, 0.15);
}
.c-fixed-subscribe__toggle {
  font-family: "Solway", Gotham, Georgia, serif;
  font-size: 1.4rem;
  border: 0;
  background: #9FD8D6;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  padding: 0 1rem;
}
.c-fixed-subscribe__toggle--close {
  background: #1667D5;
  color: white;
  display: none;
}
.active .c-fixed-subscribe__toggle--close {
  display: flex;
}
.c-fixed-subscribe__toggle--open {
  font-size: 1.5rem;
  padding-right: 5rem;
  transition: color .3s ease,
					background .3s ease;
}
@media all and (max-width: 767px) {
  .attention .c-fixed-subscribe__toggle--open {
    background: #1667D5;
    color: white;
  }
}
.c-fixed-subscribe__toggle__text {
  margin-right: 1rem;
  opacity: 1;
  transition: opacity .3s ease;
}
.active .c-fixed-subscribe__toggle--open .c-fixed-subscribe__toggle__text {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s ease 0.3s,
						opacity .3s ease;
}
.c-fixed-subscribe__toggle--open .c-fixed-subscribe__toggle__icon-wrapper {
  background: #F0634F;
  border-radius: 50%;
  width: 3.8rem;
  height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -50%;
  right: 1rem;
}
@media all and (max-width: 767px) {
  .attention .c-fixed-subscribe__toggle--open .c-fixed-subscribe__toggle__icon-wrapper {
    animation: radiatingButton 2s linear infinite;
  }
}
.c-fixed-subscribe__toggle__icon {
  color: white;
}
.c-fixed-subscribe__toggle--open .c-fixed-subscribe__toggle__icon {
  font-size: 2.2rem;
  transform: rotate(90deg);
}
.c-fixed-subscribe__toggle--close .c-fixed-subscribe__toggle__icon {
  font-size: 1.2rem;
}
.c-fixed-subscribe__panel {
  background: #9FD8D6;
  padding: 1.5rem 2rem;
  min-height: 30rem;
}
.active .c-fixed-subscribe__panel {
  box-shadow: -0.4rem 0 0.8rem 0.2rem rgba(0, 0, 0, 0.2);
}
.c-fixed-subscribe__panel__inner {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s ease 0.3s,
					opacity .3s ease;
}
.active .c-fixed-subscribe__panel__inner {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease;
}
.c-fixed-subscribe__panel__heading {
  margin: 0;
  font-size: 2.4rem;
}
.c-fixed-subscribe__panel__copy {
  font-weight: bold;
  font-family: "Solway", Gotham, Georgia, serif;
  font-weight: 300;
  margin-top: 1rem;
}
.c-fixed-subscribe__panel__form__group-wrapper {
  margin-bottom: 1rem;
}
.c-fixed-subscribe__panel__form__btn__wrapper {
  margin-top: 1rem;
}
@keyframes radiatingButton {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 99, 79, 0.5), 0 0 0 0.4rem rgba(240, 99, 79, 0.5), 0 0 0 0.8rem rgba(240, 99, 79, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0.4rem rgba(240, 99, 79, 0.5), 0 0 0 0.8rem rgba(240, 99, 79, 0.5), 0 0 0 1.2rem rgba(240, 99, 79, 0);
  }
}
