@import url(https://use.typekit.net/ajs7grg.css);
.layout {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  justify-content: flex-start;
  align-items: center;
  width: 100%; }

.t-button {
  display: inline-block;
  outline: none;
  background: var(--color-primary);
  color: var(--color-light);
  border: 2px solid var(--color-primary);
  margin: 16px 0;
  border-radius: 4px;
  padding: 7px 32px 9px;
  transition: all 300ms var(--ease-out-cubic);
  cursor: pointer; }
  .t-button:active {
    box-shadow: 0 0 0 4px var(--color-primary-a20); }
  @media (max-width: 900px) {
    .t-button {
      width: 100%;
      flex: 0 0 100%; } }
  @media (min-width: 900px) {
    .t-button {
      width: auto;
      position: relative;
      z-index: 1; }
      .t-button:hover, .t-button:focus {
        background: #045fc7; } }

.t-input {
  display: block;
  background: none;
  color: var(--color-dark);
  font-weight: 400;
  border: 2px solid #aaa;
  margin: 16px 0;
  border-radius: 4px;
  padding: 7px 16px 9px;
  outline: none;
  opacity: 0.6;
  width: 100%;
  transition: all 300ms var(--ease-out-cubic); }
  .t-input:valid {
    opacity: 1;
    border-color: var(--color-primary); }
  .t-input:hover {
    opacity: 0.8; }
  .t-input:active, .t-input:focus {
    opacity: 1;
    border-color: var(--color-primary); }

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 0;
  z-index: 9000;
  background: rgba(10, 10, 10, 0.2); }

@-webkit-keyframes show-modal {
  from {
    opacity: 0;
    transform: translateY(160px) scale(0.75); }
  to {
    opacity: 1;
    transform: translateY(0) scale(1); } }

@keyframes show-modal {
  from {
    opacity: 0;
    transform: translateY(160px) scale(0.75); }
  to {
    opacity: 1;
    transform: translateY(0) scale(1); } }

.modal-container {
  background-color: var(--color-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc(100% - 20px);
  max-width: 640px;
  border-radius: 4px;
  height: auto;
  box-shadow: 0 16px 64px rgba(10, 10, 10, 0.2);
  z-index: 9999;
  transition: all 300ms var(--ease-out-cubic);
  -webkit-animation: show-modal 600ms var(--ease-out-cubic);
          animation: show-modal 600ms var(--ease-out-cubic); }
  @media (max-width: 900px) {
    .modal-container {
      padding: 20px; } }
  @media (min-width: 900px) {
    .modal-container {
      padding: 64px; } }
  .modal-container span {
    font-weight: 400; }
  .modal-container button {
    width: 100%; }

.modal-button {
  position: fixed;
  bottom: 0;
  width: auto;
  padding: 0 50px;
  height: 80px;
  background: var(--color-light);
  box-shadow: none;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9000;
  transition: all 0.3s var(--ease-in-cubic); }
  .modal-button:hover {
    opacity: 0.8; }
  .modal-button.active {
    bottom: -80px; }
  .modal-button h3 {
    font-weight: 400; }
  .modal-button h3::after {
    content: url(/static/images/icons/download.svg);
    margin-left: 8px; }

