@keyframes pulse-background {
  0% {
    background-color: #0080b6; }
  50% {
    background-color: #00b2ff; }
  100% {
    background-color: #0080b6; } }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

@keyframes slide-down {
  from {
    transform: translateY(-100%); }
  to {
    transform: translateY(0%); } }

*, *:before, *:after {
  box-sizing: inherit; }

html {
  box-sizing: border-box; }

a {
  color: #15A960; }

.site-error {
  text-align: center;
  max-width: 850px;
  margin: 0 auto; }
  .site-error pre {
    text-align: left; }

.loader {
  animation-name: spin;
  animation-duration: 800ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; }

p, li {
  margin: 3px 0;
  font-size: 12pt;
  line-height: 18pt;
  color: #4d4c4c; }
  p.good, li.good {
    font-size: 14pt;
    color: #15A960; }

body {
  padding: 0;
  margin: 0;
  font-size: 12pt;
  background-color: #fcfcfc;
  color: #424242;
  font-weight: 400; }

strong {
  font-weight: 400; }

input, body {
  font-family: "Open Sans", "Segoe UI", sans-serif; }

input[type=file] {
  display: none; }

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset; }

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none; }

.tags-input.focus,
input[name]:focus,
input.card-number:focus,
input.card-expiry:focus,
input.card-cvc:focus {
  border-color: #15CD72;
  box-shadow: 0 0 8px rgba(21, 205, 114, 0.6); }

.code:focus {
  border-color: #15CD72; }

h1 {
  padding: 64px;
  margin: 0;
  color: #15A960;
  font-weight: 300; }
  h1 img {
    height: 24px;
    padding-right: 6px; }

h2 {
  color: #15A960;
  font-size: 24pt;
  font-weight: 300;
  text-align: center;
  margin: 12px; }

li {
  text-align: left; }

img.avatar {
  border-radius: 50%;
  height: 36px;
  width: 36px;
  margin: 0 24px; }

h1 a {
  color: #15A960;
  text-decoration: none; }

.overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw; }
  .overlay .message {
    margin: 0 auto; }

.not-found, .cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  width: 100vw; }
  .not-found .message, .cancel .message {
    margin: 0 auto;
    text-align: center;
    max-width: 550px; }

.not-found h2 {
  opacity: 0;
  animation-name: fadein;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards; }

input {
  color: #424242;
  background-size: 10pt; }
  input.used {
    padding-right: 36px; }
  input.used:invalid {
    background-image: url("/images/iconmonstr-x-mark-icon.svg");
    background-repeat: no-repeat;
    background-position: right 12px center; }
  input.used:valid {
    background-image: url("/images/iconmonstr-check-mark-icon.svg");
    background-repeat: no-repeat;
    background-position: right 12px center; }

.code {
  width: 100%;
  height: 128px;
  overflow: scroll;
  border-radius: 4px;
  border: 1px solid #c5c5c5;
  font-size: 12pt;
  color: #191919;
  display: block;
  padding: 6px;
  background-color: #f8f8f8;
  font-family: "Menlo", "Monaco", "Courier New", monospace; }

button {
  transition: all 0.2s;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  color: #fcfcfc;
  padding: 12px;
  background-color: #15A960;
  font-size: 11pt;
  box-shadow: 0 4px 16px #eee; }
  button.next, button.pay {
    right: 0; }
  button.back {
    left: 0;
    background-color: #888; }
  button.get-started, button.next, button.pay, button.reset {
    color: white;
    background-color: #15A960; }
  button.next, button.back, button.pay {
    bottom: 0;
    position: absolute; }
    button.next:disabled, button.back:disabled, button.pay:disabled {
      background-color: #F1F1F1;
      color: #c5c5c5;
      border: none;
      box-shadow: none; }
  button.prev, button.next, button.back {
    margin: 6px;
    display: block;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
  button.unknown-terminator {
    padding: 0;
    margin: 0;
    color: #888;
    background-color: #fcfcfc; }
  button.get-started {
    margin: 6px;
    display: block;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    margin: 48px auto; }

pre {
  padding: 24px;
  background-color: #E9E9E9;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  tab-size: 2; }

.status-badge {
  letter-spacing: 1px;
  color: white;
  padding: 3px 6px;
  display: inline;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  vertical-align: middle; }
  .status-badge.complete {
    background-color: #15CD72; }
  .status-badge.validating {
    background-color: #888; }
  .status-badge.action-needed {
    background-color: #00b2ff;
    animation-name: pulse-background;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite; }

.breadcrumbs {
  display: flex;
  margin: 96px auto 0 auto;
  justify-content: center;
  flex-direction: row; }
  .breadcrumbs .breadcrumb {
    text-transform: uppercase;
    padding: 0 3px;
    font-size: 10pt; }
    .breadcrumbs .breadcrumb.current {
      font-weight: 400;
      font-size: 14pt; }
    .breadcrumbs .breadcrumb a {
      text-decoration: none;
      vertical-align: -webkit-baseline-middle; }

.flash-message {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  font-weight: 400;
  text-align: center;
  padding: 12px;
  transform: translateY(-100%);
  animation-name: slide-down;
  animation-duration: 200ms;
  animation-delay: 300ms;
  animation-fill-mode: forwards; }
  .flash-message.error {
    background-color: #F1ED27; }

#habla_expanded_div > *:last-child {
  display: none; }

.mixpanel-ad {
  display: none; }

.exit-modal {
  display: none; }

.tags-input {
  display: inline-block;
  padding: 0 2px;
  background: white;
  border: 1px solid #CCC;
  width: 16em;
  border-radius: 2px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
  .tags-input .tag {
    display: inline-block;
    background: #EEE;
    padding: 0 4px;
    margin: 2px;
    border: 1px solid #CCC;
    color: #c5c5c5;
    border-radius: 2px;
    font: inherit;
    user-select: none;
    cursor: pointer;
    transition: all 100ms ease; }
    .tags-input .tag.selected {
      background-color: #777;
      border-color: #777;
      color: #EEE; }
    .tags-input .tag.dupe {
      transform: scale3d(1.2, 1.2, 1.2);
      background-color: #FCC;
      border-color: #700; }
  .tags-input input {
    appearance: none !important;
    display: inline-block !important;
    padding: 3px;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    font: inherit !important;
    font-size: 100% !important;
    outline: none !important; }
  .tags-input .selected ~ input {
    opacity: 0.3; }

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  transform: rotateZ(45deg); }

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1); }

.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #15A960;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  transform-origin: 100% 100%; }

.sk-folding-cube .sk-cube2 {
  transform: scale(1.1) rotateZ(90deg); }

.sk-folding-cube .sk-cube3 {
  transform: scale(1.1) rotateZ(180deg); }

.sk-folding-cube .sk-cube4 {
  transform: scale(1.1) rotateZ(270deg); }

.sk-folding-cube .sk-cube2:before {
  animation-delay: 0.3s; }

.sk-folding-cube .sk-cube3:before {
  animation-delay: 0.6s; }

.sk-folding-cube .sk-cube4:before {
  animation-delay: 0.9s; }

@keyframes sk-foldCubeAngle {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }
  25%, 75% {
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }
  90%, 100% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0; } }

section.title {
  text-align: center;
  font-size: 4vw;
  color: #15A960;
  margin: 64px 48px 12px 48px; }
  @media (max-width: 550px) {
    section.title {
      font-size: 24pt; } }

div.country-not-supported .message {
  width: 100%;
  max-width: 850px;
  margin: 128px auto; }
  div.country-not-supported .message * {
    text-align: center; }
  div.country-not-supported .message h1 {
    font-size: 4vw;
    color: #15A960; }
  div.country-not-supported .message h2 {
    padding-bottom: 24px; }

section.ribbon {
  width: 100%;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center; }
  section.ribbon .point {
    max-width: 550px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 48px 0 48px 0; }
    @media (max-width: 550px) {
      section.ribbon .point {
        max-width: 100%; } }
    section.ribbon .point h2 {
      text-align: left;
      margin: 12px 0; }
      @media (max-width: 550px) {
        section.ribbon .point h2 {
          text-align: center; } }
    section.ribbon .point .mock-certificate {
      width: 100%;
      padding-top: 12px; }
    section.ribbon .point .text, section.ribbon .point .graphic {
      height: 100%; }
      @media (max-width: 550px) {
        section.ribbon .point .text, section.ribbon .point .graphic {
          height: auto; } }
    section.ribbon .point .text {
      width: 60%;
      padding: 0 12px; }
      @media (max-width: 550px) {
        section.ribbon .point .text {
          width: 100%;
          padding: 48px; } }
      section.ribbon .point .text p {
        text-align: left; }
    section.ribbon .point .graphic {
      width: 40%; }
      @media (max-width: 550px) {
        section.ribbon .point .graphic {
          width: 100%;
          padding: 0 48px; } }
      section.ribbon .point .graphic img.diagram {
        width: 100%;
        padding: 24px; }
    section.ribbon .point p {
      text-align: center; }
    section.ribbon .point .demo-certs {
      display: block;
      width: 100%; }
      section.ribbon .point .demo-certs p {
        font-size: 8pt;
        line-height: 12pt; }
  section.ribbon:nth-of-type(odd) {
    background-color: whitesmoke; }
    section.ribbon:nth-of-type(odd) .point {
      flex-direction: row-reverse; }
      @media (max-width: 550px) {
        section.ribbon:nth-of-type(odd) .point {
          flex-direction: column-reverse; } }
  section.ribbon:nth-of-type(even) .point {
    flex-direction: row; }
    @media (max-width: 550px) {
      section.ribbon:nth-of-type(even) .point {
        flex-direction: column-reverse; } }
  section.ribbon blockquote {
    max-width: 550px; }
    section.ribbon blockquote p {
      text-align: center;
      font-size: 24px;
      line-height: 36px;
      font-style: oblique; }
      section.ribbon blockquote p:before {
        content: open-quote; }
      section.ribbon blockquote p:after {
        content: close-quote; }

.final-point {
  padding: 48px 0 48px 0; }
  .final-point ul {
    padding: 0;
    list-style-type: none; }
    .final-point ul li {
      text-align: center;
      padding: 6px;
      font-size: 14pt; }
  .final-point h2 {
    color: #15A960;
    font-size: 24pt;
    font-weight: 300; }

section.no-mobile-yet {
  display: none; }
  @media (max-width: 550px) {
    section.no-mobile-yet {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      font-style: oblique;
      padding: 12px 24px;
      text-align: center; }
      section.no-mobile-yet p {
        padding: 12px 0; } }

section.get-a-certificate {
  max-width: 550px;
  margin: 0 auto;
  overflow: hidden; }
  @media (max-width: 550px) {
    section.get-a-certificate {
      display: none; } }

p.price-preview {
  font-size: 14pt;
  padding: 24px 0;
  text-align: center; }

label.is-using-dba-name {
  width: auto;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  label.is-using-dba-name p {
    font-size: 12pt;
    text-align: center;
    margin: 0; }
    label.is-using-dba-name p.subtle {
      color: #c5c5c5;
      font-size: 8pt; }
    label.is-using-dba-name p.choose-dba-or-not {
      cursor: pointer; }
  label.is-using-dba-name input {
    display: none; }
  label.is-using-dba-name * {
    width: auto;
    padding: 6px;
    margin: 6px; }

label {
  width: 100%;
  padding: 3px;
  overflow: visible;
  clear: both;
  display: flex;
  align-items: center;
  justify-content: center; }
  label.csr-paste {
    display: block;
    margin: 24px auto;
    text-align: center;
    width: 100%;
    padding: 24px; }
  label.show-tip .description {
    flex-direction: column; }
    label.show-tip .description p {
      color: #424242; }
      label.show-tip .description p.tip {
        display: block; }
  label.not-relevant-for-country {
    display: none; }
  label.admin-contact-is-technical-contact {
    display: block; }
    label.admin-contact-is-technical-contact input[name=admin-contact-is-technical-contact] {
      margin: 4px;
      display: inline-block;
      width: auto;
      float: left;
      min-height: 0; }
  label .description {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    width: 50%;
    height: 48px;
    text-align: right;
    margin: 0;
    padding: 0 12px;
    text-align: right; }
    label .description p {
      text-align: right;
      width: 100%;
      color: #c5c5c5; }
      label .description p.tip {
        display: none;
        font-size: 9pt;
        line-height: 12pt;
        font-weight: 400; }
  label .tags-input {
    background-color: white; }
  label input, label .tags-input {
    margin: 0;
    border-radius: 4px;
    border: 1px solid #c5c5c5;
    display: block;
    font-size: 14pt;
    line-height: 14pt; }
  label input, label .tags-input {
    padding: 12px 6px;
    width: 45%; }
    label input .tag, label .tags-input .tag {
      padding: 3px 6px; }
  label input[name="physical-address-postal-code"] {
    text-transform: uppercase; }

.step-2 p {
  text-align: center; }

form.signup {
  display: block;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  width: 400%;
  padding-bottom: 64px; }
  form.signup h2.subtitle {
    font-size: 16pt;
    color: #15A960; }
  form.signup .step {
    width: 25%;
    float: left;
    position: relative;
    padding: 0 6px 64px 6px; }
    form.signup .step .suspended {
      margin: 24px 0;
      text-align: left;
      font-style: oblique; }
  form.signup .step-1 .mock-certificate {
    margin: 36px auto 0 auto; }
  form.signup .step-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    form.signup .step-2 p {
      clear: both; }
      form.signup .step-2 p.whois-warning {
        text-align: left;
        padding: 12px;
        background-color: #F1F1F1;
        margin-bottom: 24px; }
    form.signup .step-2 .use-web-crypto, form.signup .step-2 .dont-use-web-crypto {
      color: #15A960;
      cursor: pointer; }
    form.signup .step-2 .generating-keys {
      font-weight: 400;
      text-transform: uppercase;
      text-decoration: none;
      margin: 96px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column; }
      form.signup .step-2 .generating-keys .generating {
        font-size: 8pt; }
      form.signup .step-2 .generating-keys .download {
        transform: rotate(45deg);
        font-size: 10pt;
        width: 96px;
        height: 96px;
        margin: 48px;
        padding: 12px;
        border-radius: 3px;
        background-color: #15A960;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
    form.signup .step-2 button.copy-to-clipboard {
      padding: 6px;
      font-size: 9pt;
      float: right; }
    form.signup .step-2 .certificate-signing-request {
      padding: 24px 0;
      width: 100%; }
    form.signup .step-2 .csr-upload {
      width: 100%;
      padding: 1em 0; }
      form.signup .step-2 .csr-upload button.upload {
        margin: 6px;
        display: block;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
        background-color: #15A960;
        color: white;
        float: right; }
        form.signup .step-2 .csr-upload button.upload:disabled {
          background-color: #c5c5c5;
          color: #888;
          box-shadow: none; }
      form.signup .step-2 .csr-upload .csr-paste {
        font-size: 10pt;
        min-height: 300px; }
        form.signup .step-2 .csr-upload .csr-paste.error {
          border-color: #FF7049; }
      form.signup .step-2 .csr-upload p {
        padding: 12px 0; }

.step input[name], .step .tags-input, .step .skeletize {
  width: 45%;
  float: right; }

.step input[name], .step .skeletize {
  min-height: 48px;
  color: #c5c5c5; }

.step label.show-tip input[name], .step label.show-tip .skeletize, .step label.show-tip .tags-input .tag {
  color: #424242; }

.step .server-names .description, .step .server-names .tags-input {
  min-height: 72px; }

.duration {
  overflow: visible; }

.features {
  clear: both;
  padding: 12px 0; }
  .features .feature {
    padding: 12px 0;
    text-align: center;
    color: #15A960;
    border-bottom: 1px solid #F1F1F1; }
    .features .feature:first-of-type {
      border-top: 1px solid #F1F1F1; }

.price {
  display: flex;
  flex-direction: column;
  align-items: flex-end; }
  .price .line-item, .price .total {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    overflow: hidden; }
    .price .line-item .amount-description, .price .total .amount-description {
      text-align: right; }
    .price .line-item .amount, .price .total .amount {
      width: 150px;
      text-align: right; }
  .price .total.with-breakdown {
    border-top: 1px solid #F1F1F1; }
  .price .total .amount-description {
    padding: 0 6px;
    font-weight: 400; }
  .price .total .amount {
    font-size: 0; }
    .price .total .amount .currency {
      font-size: 16pt;
      line-height: 28pt;
      vertical-align: top; }
    .price .total .amount .number {
      font-size: 30pt; }

.payment-errors.has-errors {
  color: #FF7049;
  border: 2px solid #FF7049;
  border-radius: 3px;
  text-align: center;
  margin: 12px 0;
  font-weight: 400;
  background-color: white;
  padding: 24px 96px; }

.fields {
  padding: 3px; }

.order-list {
  max-width: 850px;
  margin: 64px auto 0 auto;
  align-items: center;
  display: flex;
  flex-direction: column; }
  .order-list h1 {
    width: 100%;
    text-align: left;
    color: #424242;
    margin: 0;
    padding: 12px 0; }
  .order-list table {
    text-align: left;
    width: 100%;
    margin: 12px;
    border-collapse: collapse; }
    .order-list table a {
      text-decoration: none; }
    .order-list table th, .order-list table td {
      padding: 12px 12px 12px 0; }
    .order-list table tbody tr {
      border-top: 1px solid #F1F1F1; }
      .order-list table tbody tr:last-of-type {
        border-bottom: 1px solid #F1F1F1; }
    .order-list table tbody td img {
      vertical-align: text-bottom; }

.admin-customers button {
  font-size: 10px;
  display: inline-block;
  padding: 2px;
  box-shadow: none; }

.customers {
  max-width: 550px;
  margin: 64px auto; }

.certsimple-order-status-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  @media (max-width: 550px) {
    .certsimple-order-status-ui nav .person {
      padding: 12px; }
    .certsimple-order-status-ui nav .log-out {
      text-align: right; } }

.order-header {
  width: 550px; }
  .order-header.issued {
    width: 850px; }
  .order-header .order-id {
    font-weight: 500;
    text-transform: uppercase;
    color: #888;
    padding-top: 24px; }
    .order-header .order-id .expiry {
      padding-left: 24px; }
  .order-header h3 {
    font-size: 20pt;
    margin: 0;
    font-weight: 300; }
  .order-header h4.domains {
    margin: 0 0 16px 0;
    padding: 0; }

.completed-order {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: flex-start; }
  @media (max-width: 550px) {
    .completed-order {
      padding-top: 0; } }
  .completed-order .order-options {
    width: 300px; }
    .completed-order .order-options .order-option {
      cursor: pointer;
      padding: 24px 12px;
      font-weight: 400;
      color: #15A960; }
      .completed-order .order-options .order-option.active {
        background-color: #F1F1F1;
        border-left: 4px solid #15A960; }
  .completed-order .panel {
    padding: 0 12px;
    width: 550px;
    border: 1px solid #F1F1F1;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
    .completed-order .panel h2 {
      width: 100%;
      text-align: left;
      margin: 12px 0; }
    .completed-order .panel .panel-option {
      display: none;
      max-width: 100%; }
      .completed-order .panel .panel-option.active {
        display: block; }
    .completed-order .panel p.download {
      display: flex;
      margin: 0.5em 0 1em 0; }
      .completed-order .panel p.download .download-certificate {
        box-shadow: none;
        font-size: 10pt;
        background-color: #424242;
        color: white;
        float: left;
        display: inline;
        text-transform: uppercase;
        box-shadow: none;
        background-color: #424242;
        color: white;
        font-weight: 400;
        padding: 12px 24px;
        margin: 6px 0;
        text-decoration: none;
        border-radius: 4px; }
    .completed-order .panel ul {
      list-style: none;
      padding-left: 3px; }
    .completed-order .panel li {
      font-size: 16pt; }
    .completed-order .panel .install-certificate {
      font-size: 24px; }
    .completed-order .panel button.unknown-terminator {
      padding: 0;
      margin: 0;
      color: #888;
      background-color: #fcfcfc;
      box-shadow: none; }
    .completed-order .panel .new-domain-name, .completed-order .panel .domain-name, .completed-order .panel .no-domain-names {
      margin-left: 12px; }
    .completed-order .panel h4 {
      cursor: pointer;
      font-size: 16pt; }
    .completed-order .panel .option-detail {
      padding-bottom: 0.5em; }
    .completed-order .panel input.new-domain-name {
      padding: 12px;
      font-size: 14pt;
      border: 1px solid #F1F1F1; }
    .completed-order .panel button.add-domain-name {
      padding: 6px;
      color: #F1F1F1;
      background-color: #15A960;
      margin: 12px;
      font-size: 8pt; }
      .completed-order .panel button.add-domain-name:disabled {
        color: #c5c5c5;
        background-color: #F1F1F1; }
    .completed-order .panel button.remove-domain-name {
      font-size: 10px;
      display: inline-block;
      padding: 2px;
      box-shadow: none;
      font-size: 16px;
      padding: 0 2px;
      color: #888;
      background-color: #F1F1F1; }
    .completed-order .panel button.name-slot-pay, .completed-order .panel button.renew-pay {
      margin: 24px;
      color: #F1F1F1;
      background-color: #15A960; }
    .completed-order .panel button.reissue {
      padding: 12px;
      margin: 12px 0;
      color: #F1F1F1;
      background-color: #15A960; }
    .completed-order .panel form.renew-certificate {
      width: 100%; }

.site-seal-instructions {
  width: 100%; }

.invoice {
  margin: 0 auto;
  padding: 48px;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .invoice h1 img {
    padding: 0; }
  .invoice .address {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start; }
    .invoice .address .from, .invoice .address .to {
      width: 50%;
      height: 150px; }
  .invoice table {
    width: 100%;
    margin-bottom: 49px; }
    .invoice table th {
      width: 50%;
      text-align: left; }

@keyframes show-progress {
  from {
    width: 0%; }
  to {
    width: 100%; } }

.skeletize {
  position: relative; }
  .skeletize.focused .search {
    border: 1px solid #15CD72;
    box-shadow: 0 0 8px rgba(21, 205, 114, 0.6); }
  .skeletize.focused .dropdown {
    border: 1px solid #15CD72;
    box-shadow: 0 0 8px rgba(21, 205, 114, 0.6);
    border-top: none; }
  .skeletize.focused.showing-dropdown .search {
    border: 1px solid #15CD72;
    border-bottom: 1px solid #c5c5c5;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .skeletize.focused.showing-dropdown .dropdown {
    border: 1px solid #15CD72;
    border-radius: 3px;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .skeletize div {
    display: flex; }
  .skeletize .search {
    cursor: text;
    width: 100%;
    overflow: hidden;
    position: relative;
    justify-content: left;
    flex-direction: row;
    align-items: center;
    border-radius: 3px;
    border: 1px solid #c5c5c5;
    background-color: white;
    flex-direction: column;
    align-items: center; }
    .skeletize .search .search-row {
      justify-content: left;
      flex-direction: row;
      align-items: center;
      width: 100%;
      padding: 6px 32px 6px 6px; }
      .skeletize .search .search-row .selected-option {
        display: block;
        overflow: hidden;
        flex: 1 0 100%;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 6px 0; }
        .skeletize .search .search-row .selected-option .name {
          display: block; }
        .skeletize .search .search-row .selected-option .source {
          font-size: 8pt; }
      .skeletize .search .search-row.used {
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 10pt; }
        .skeletize .search .search-row.used.invalid {
          background-image: url(/images/iconmonstr-x-mark-icon.svg); }
        .skeletize .search .search-row.used.valid {
          background-image: url(/images/iconmonstr-check-mark-icon.svg); }
      .skeletize .search .search-row input {
        cursor: pointer;
        display: inline-flex;
        padding: 3px 0;
        min-height: 0;
        max-height: none;
        max-width: 100%;
        text-indent: 0;
        border: none;
        background: none;
        line-height: 26px;
        user-select: auto;
        box-shadow: none; }
        .skeletize .search .search-row input:valid {
          background-image: none; }
        .skeletize .search .search-row input:invalid {
          background-image: none; }
        .skeletize .search .search-row input:focus {
          outline: none; }
      .skeletize .search .search-row .ajax-loader {
        position: absolute;
        right: 12px;
        width: 18px;
        height: 18px;
        background-image: url("../images/loading-spin-green.svg");
        background-repeat: no-repeat;
        background-size: cover;
        animation-name: spin;
        animation-duration: 800ms;
        animation-iteration-count: infinite;
        animation-timing-function: linear; }
    .skeletize .search .skeletize-progress-bar {
      width: 100%;
      height: 3px;
      background-color: #F1F1F1;
      display: flex; }
      .skeletize .search .skeletize-progress-bar .skeletize-progress {
        width: 0%;
        height: 3px;
        background-color: #15CD72;
        display: flex; }
        .skeletize .search .skeletize-progress-bar .skeletize-progress.skeletize-searching {
          animation-duration: 5s;
          animation-name: show-progress;
          animation-fill-mode: forwards; }
  .skeletize .dropdown {
    position: absolute;
    width: 100%;
    z-index: 1;
    background: white;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
    flex-direction: column;
    align-items: flex-start; }
    .skeletize .dropdown .option {
      display: block;
      overflow: hidden;
      flex: 1 0 100%;
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      padding: 6px 12px;
      cursor: pointer; }
      .skeletize .dropdown .option .name {
        display: block; }
      .skeletize .dropdown .option .source {
        font-size: 8pt; }
      .skeletize .dropdown .option:hover {
        background-color: #f5fafd; }

.step-1 .mock-certificate {
  width: 70%;
  zoom: 1.5; }

.mock-certificate {
  font-family: Helvetica, Arial, sans-serif;
  width: 50%;
  padding: 3px; }
  .mock-certificate .mock-browser div {
    display: flex;
    align-items: center;
    justify-content: flex-start; }
  .mock-certificate .mock-browser .mock-address-bar {
    width: 200%; }
  .mock-certificate.chrome .mock-browser {
    cursor: default;
    overflow: hidden;
    padding: 6px 3px;
    background: whitesmoke;
    border: 1px solid #d0d0d0; }
    .mock-certificate.chrome .mock-browser .mock-address-bar {
      border: 1px solid #a6a6a6;
      border-radius: 2px;
      background: white;
      padding: 3px; }
      .mock-certificate.chrome .mock-browser .mock-address-bar img {
        width: 10px;
        vertical-align: bottom;
        margin-left: 3px;
        margin-right: 5px; }
      .mock-certificate.chrome .mock-browser .mock-address-bar .identity-bar {
        padding: 2px;
        margin: 3px 0 3px 0;
        font-size: 14px;
        color: #0b8043;
        border-right: 1px solid #a6a6a6; }
        .mock-certificate.chrome .mock-browser .mock-address-bar .identity-bar .display-name {
          padding: 1px 6px 0 1px; }
    .mock-certificate.chrome .mock-browser .address {
      font-size: 14px;
      line-height: 14px;
      margin: 6px 0 6px 3px; }
      .mock-certificate.chrome .mock-browser .address .scheme {
        color: #0b8043; }
      .mock-certificate.chrome .mock-browser .address * {
        padding-top: 2px; }
  .mock-certificate.safari .mock-browser {
    overflow: hidden;
    padding: 6px 3px;
    background: whitesmoke;
    border: 1px solid #d0d0d0; }
    .mock-certificate.safari .mock-browser .mock-address-bar {
      border-radius: 2px;
      background: white;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
      .mock-certificate.safari .mock-browser .mock-address-bar img {
        width: 8px;
        margin: 4px 3px;
        display: block;
        height: 11px; }
      .mock-certificate.safari .mock-browser .mock-address-bar .identity-bar {
        padding: 2px;
        line-height: 18px;
        font-size: 14px;
        color: #15A960;
        border: none;
        border-radius: 3px;
        width: auto; }
    .mock-certificate.safari .mock-browser .address {
      font-size: 14px;
      line-height: 14px;
      margin: 6px 0 6px 3px; }
      .mock-certificate.safari .mock-browser .address.ev {
        display: none; }
      .mock-certificate.safari .mock-browser .address .scheme {
        display: none; }
      .mock-certificate.safari .mock-browser .address * {
        padding-top: 1px; }
  .mock-certificate.firefox .mock-browser {
    overflow: hidden;
    padding: 6px 0;
    background: whitesmoke;
    border: 1px solid #d0d0d0; }
    .mock-certificate.firefox .mock-browser .mock-address-bar {
      border-radius: 2px;
      background: white;
      border-bottom: solid 1px #888; }
      .mock-certificate.firefox .mock-browser .mock-address-bar img {
        width: 10px;
        margin: 0 3px; }
      .mock-certificate.firefox .mock-browser .mock-address-bar .identity-bar {
        margin: 0 0 0 3px;
        padding: 2px;
        font-size: 14px;
        color: #15A960;
        border-image: url("/images/firefox-seperator.png");
        border-right-width: 1px;
        border-left-width: 0px;
        border-top-width: 0px;
        border-bottom-width: 0px; }
    .mock-certificate.firefox .mock-browser .address {
      font-size: 14px;
      line-height: 14px;
      margin: 6px 0 6px 3px; }
      .mock-certificate.firefox .mock-browser .address .scheme {
        color: #747474; }
  .mock-certificate.ie .mock-browser {
    overflow: hidden;
    padding: 6px 3px;
    background: #71bfdf;
    border: 1px solid #d0d0d0;
    color: #424242; }
    .mock-certificate.ie .mock-browser .mock-address-bar {
      border: solid 1px #90c49e;
      outline: 1px solid #47859c;
      background: white; }
      .mock-certificate.ie .mock-browser .mock-address-bar .scheme {
        padding-left: 3px; }
      .mock-certificate.ie .mock-browser .mock-address-bar.ev {
        background-color: #86de94; }
      .mock-certificate.ie .mock-browser .mock-address-bar img {
        height: 12px;
        width: 10px;
        vertical-align: bottom;
        margin: 0 0 1px 0; }
      .mock-certificate.ie .mock-browser .mock-address-bar .identity-bar {
        margin: 0 0 0 3px;
        padding: 2px;
        font-size: 9pt;
        border-image: url("/images/firefox-seperator.png");
        border-right-width: 1px;
        border-left-width: 0px;
        border-top-width: 0px;
        border-bottom-width: 0px; }
    .mock-certificate.ie .mock-browser .address {
      font-size: 9pt;
      line-height: 14px;
      margin: 6px 0 6px 3px; }
  .mock-certificate.edge .mock-browser {
    overflow: hidden;
    padding: 6px 3px;
    background: #f2f2f2;
    color: #424242; }
    .mock-certificate.edge .mock-browser .display-name {
      padding-left: 6px;
      padding-right: 12px; }
    .mock-certificate.edge .mock-browser .mock-address-bar .scheme {
      padding-left: 3px; }
    .mock-certificate.edge .mock-browser .mock-address-bar.ev .display-name {
      color: #15A960; }
    .mock-certificate.edge .mock-browser .mock-address-bar img {
      height: 21px;
      vertical-align: bottom;
      margin-right: 1px; }
    .mock-certificate.edge .mock-browser .address {
      font-size: 14px;
      line-height: 14px;
      margin: 6px 0 6px 3px; }

.progress {
  margin: 30px auto;
  width: 300px; }
  @media (max-width: 550px) {
    .progress {
      margin: 0 auto;
      width: 240px;
      position: static; } }
  .progress .progress-bar {
    height: 3px;
    width: 100%;
    background-color: #F1F1F1;
    margin: 0 auto; }
    .progress .progress-bar .current-progress {
      width: 0;
      height: 3px;
      margin: 0;
      background: linear-gradient(to right, #fafefa 0%, #15A960 100%);
      transition: all 100ms ease-in-out; }
  .progress .progress-steps {
    position: relative;
    color: grey;
    height: 50px; }
    .progress .progress-steps .progress-step {
      padding: 6px 0;
      color: #c5c5c5;
      transform: translateX(-50%);
      text-align: center;
      width: 70px;
      position: absolute;
      font-size: 10pt; }
      .progress .progress-steps .progress-step.active {
        color: #15A960;
        font-weight: 400; }

.tweets .slidey-container, .tweets h2 {
  width: 50%; }
  @media (max-width: 550px) {
    .tweets .slidey-container, .tweets h2 {
      padding: 24px;
      width: 100%; } }

.tweets .slidey-container {
  overflow: hidden; }
  .tweets .slidey-container .slidey {
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center; }

.tweets h2 {
  padding: 24px; }

@keyframes scroll-logos {
  from {
    transform: translateY(0); }
  to {
    transform: translateY(-66%); } }

section.fact {
  justify-content: space-around;
  padding: 24px;
  height: 5vw;
  color: #15A960;
  font-size: 4vw;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media (max-width: 550px) {
    section.fact {
      font-size: 24pt;
      height: auto;
      text-align: center; } }

section.customer-logos {
  max-width: none;
  overflow: hidden;
  position: relative; }
  section.customer-logos:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 30%; }
  section.customer-logos .customer-logos-hack {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    section.customer-logos .customer-logos-hack .logos {
      height: 300%;
      width: 100%;
      top: 0;
      left: 0;
      background-image: url("/images/customer-logos-light.png");
      background-position: 0;
      background-size: contain;
      background-repeat: repeat;
      animation-name: scroll-logos;
      animation-duration: 40s;
      animation-timing-function: linear;
      animation-iteration-count: infinite; }
    section.customer-logos .customer-logos-hack .shade {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      background: linear-gradient(#fcfcfc 3%, rgba(255, 255, 255, 0) 15%); }

section.ribbon.be-reminded {
  background-color: #292929; }
  section.ribbon.be-reminded .point {
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    section.ribbon.be-reminded .point h2 {
      color: white;
      font-size: 30pt;
      margin: 0; }
    section.ribbon.be-reminded .point p {
      color: white;
      text-align: center;
      margin-bottom: 10px; }
    section.ribbon.be-reminded .point label {
      padding: 10px 0; }
      section.ribbon.be-reminded .point label div {
        font-size: 12pt;
        text-align: right;
        width: 20%;
        padding: 0 12px;
        color: white; }
    section.ribbon.be-reminded .point input {
      outline: none;
      border: solid 1px whitesmoke;
      background-color: white;
      border-radius: 5px;
      font-size: 14pt;
      width: 100%;
      text-align: left;
      width: 80%;
      line-height: 18pt;
      padding-left: 10px; }
      section.ribbon.be-reminded .point input:disabled {
        background-color: #F1F1F1; }
      section.ribbon.be-reminded .point input.valid {
        background-image: url("/images/iconmonstr-check-mark-icon.svg");
        background-repeat: no-repeat;
        background-position: right 12px center; }
      section.ribbon.be-reminded .point input.invalid {
        background-image: url("/images/iconmonstr-x-mark-icon.svg");
        background-repeat: no-repeat;
        background-position: right 12px center; }
    section.ribbon.be-reminded .point button {
      outline: none;
      background-color: transparent;
      color: white;
      font-size: 11pt;
      border-radius: 3px;
      padding: 6px 12px;
      text-transform: uppercase;
      margin-top: 1em;
      border: solid 2px white;
      cursor: pointer;
      box-shadow: none; }
      section.ribbon.be-reminded .point button:disabled {
        color: whitesmoke;
        border-color: whitesmoke; }
    section.ribbon.be-reminded .point .error {
      text-align: center;
      color: white; }
      section.ribbon.be-reminded .point .error a {
        color: white;
        text-decoration: underline; }

.banner {
  z-index: 2;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #15A960;
  padding: 12px 36px 12px 12px;
  transform: translateY(-100%);
  transition: all 0.2s; }
  .banner.show-banner {
    transform: none; }
  .banner p {
    color: white;
    font-size: 12pt;
    text-align: center; }
  .banner .close {
    color: white;
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 16px; }
  .banner a {
    text-decoration: underline;
    cursor: pointer;
    color: white; }
  .banner .coupon-later {
    display: none; }
    .banner .coupon-later.show-coupon-later {
      display: block; }
    .banner .coupon-later input {
      width: 168px;
      margin: 6px;
      font-size: 10px;
      border-radius: 3px;
      border: 1px solid white;
      padding: 3px; }
    .banner .coupon-later button {
      padding: 3px;
      color: white;
      box-shadow: none;
      border: 1px solid white;
      font-size: 10px;
      display: inline-block; }
      .banner .coupon-later button:disabled {
        color: #888;
        border-color: #888;
        cursor: not-allowed; }

.copy {
  position: relative;
  cursor: pointer;
  user-select: none; }
  .copy:hover:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: " ";
    background-color: white;
    opacity: 0.8;
    z-index: 1; }
  .copy .copy-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    z-index: 2;
    font-size: 10pt;
    font-weight: bold;
    text-align: center;
    color: #424242;
    display: none; }
  .copy:hover .copy-text {
    display: initial;
    display: flex;
    align-items: center;
    justify-content: center; }

.use-web-crypto, .dont-use-web-crypto {
  color: #15A960;
  cursor: pointer; }

.csr-options {
  width: 100%;
  display: flex;
  justify-content: space-between; }
  .csr-options .change-server-os, .csr-options .change-encryption-type {
    display: flex;
    align-items: center;
    justify-content: center; }
    .csr-options .change-server-os button, .csr-options .change-encryption-type button {
      margin: 6px;
      display: block;
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
      background-color: transparent;
      color: #15A960;
      font-size: 8pt;
      box-shadow: none;
      padding: 2px;
      margin: 0;
      outline: none;
      font-weight: 700; }
      .csr-options .change-server-os button.unused, .csr-options .change-encryption-type button.unused {
        color: #c5c5c5;
        font-weight: 400; }
    .csr-options .change-server-os .help-decide, .csr-options .change-encryption-type .help-decide {
      font-size: 7pt;
      color: #c5c5c5;
      text-decoration: none;
      font-weight: 400;
      padding-left: 6px; }

.certificate-signing-request {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .certificate-signing-request .loader {
    animation-name: spin;
    animation-duration: 800ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; }

.csr-upload {
  width: 100%; }
  .csr-upload p {
    padding: 6px; }

.exit-modal {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none; }
  .exit-modal .shade {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center; }
    .exit-modal .shade .message {
      position: relative;
      width: 100%;
      background-color: #424242;
      padding: 24px;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column; }
      .exit-modal .shade .message * {
        max-width: 550px;
        color: whitesmoke; }
      .exit-modal .shade .message .close {
        position: absolute;
        right: 24px;
        top: 24px;
        cursor: pointer; }
      .exit-modal .shade .message label div {
        margin-right: 8px; }
      .exit-modal .shade .message p {
        color: whitesmoke; }
      .exit-modal .shade .message input {
        color: #424242; }
      .exit-modal .shade .message button {
        box-shadow: none;
        margin-top: 24px; }

.order-in-progress {
  width: 550px; }
  .order-in-progress .progress-step {
    margin: 24px 0; }
  .order-in-progress h5 {
    display: inline; }
  .order-in-progress .validation-step-details {
    display: block; }

@keyframes pulse {
  from {
    transform: scale(1) rotate(45deg);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16);
    background-color: #0f7c46; }
  to {
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.24);
    background-color: #15A960; } }

.generating-keys, .download-private-key {
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  margin: 96px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .generating-keys .generating, .download-private-key .generating {
    font-size: 8pt; }
  .generating-keys img, .download-private-key img {
    font-size: 10pt;
    width: 96px;
    height: 96px;
    margin: 48px;
    padding: 12px;
    border-radius: 3px;
    background-color: #15A960;
    animation-name: pulse;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-fill-mode: forwards; }

.mobile-logo {
  text-decoration: none;
  text-align: center; }
  .mobile-logo h1 {
    padding: 12px;
    width: 100%; }
  @media (min-width: 550px) {
    .mobile-logo {
      display: none; } }

nav small, .mobile-logo small {
  font-weight: 400;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1rem; }

nav, footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }
  nav a, footer a {
    text-align: center;
    font-size: 10pt;
    padding: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400; }
    nav a.logo, footer a.logo {
      text-transform: none;
      padding: 0; }
      nav a.logo h1, footer a.logo h1 {
        padding: 12px;
        font-size: 24pt; }
      @media (max-width: 550px) {
        nav a.logo, footer a.logo {
          display: none; } }
    nav a strong, footer a strong {
      font-weight: 700; }
  @media (max-width: 550px) {
    nav, footer {
      position: relative;
      display: flex;
      justify-content: center;
      flex-direction: row;
      align-items: flex-start;
      flex-wrap: wrap; }
      nav a, footer a {
        width: 33%;
        padding: 6px 24px; } }

nav a {
  color: #15A960; }
  nav a img {
    height: 20px; }
  nav a.dashboard {
    padding-left: 48px; }

.bonus-footer {
  background-color: #292929;
  padding: 48px 0;
  font-weight: 400;
  display: grid;
  grid-template-columns: 172px 172px 172px 172px;
  justify-content: center;
  grid-gap: 0 96px; }
  @media (max-width: 550px) {
    .bonus-footer {
      grid-template-columns: 172px; }
      .bonus-footer * {
        text-align: center; } }
  .bonus-footer * {
    width: 100%;
    height: 42px;
    color: white;
    text-transform: uppercase;
    font-size: 9pt;
    line-height: 10pt;
    padding: 3px 0; }
    .bonus-footer * a {
      text-decoration: none;
      color: white; }
    .bonus-footer * select {
      color: black;
      background-color: white;
      height: 32px; }
      .bonus-footer * select option {
        color: black;
        background-color: white; }

body .debug {
  color: #434343;
  text-align: right;
  background-color: #292929;
  margin: 0;
  padding: 3px; }

.durations {
  margin: 24px 0; }
  .durations p {
    text-align: center; }
  .durations select {
    display: none; }
  .durations .duration-tiles {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start; }
    .durations .duration-tiles .duration-tile {
      width: 50%;
      height: 200px;
      padding: 6px; }
      .durations .duration-tiles .duration-tile .duration {
        border-radius: 3px;
        border: 1px solid #888;
        height: 100%;
        text-align: center;
        background-color: #F1F1F1;
        transition: all .2s ease-in-out;
        transform: scale(1);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column; }
        .durations .duration-tiles .duration-tile .duration.cheap {
          transform: scale(0.9); }
        .durations .duration-tiles .duration-tile .duration:hover {
          border-color: #15A960;
          border-width: 2px; }
        .durations .duration-tiles .duration-tile .duration.selected {
          background-color: #15A960; }
          .durations .duration-tiles .duration-tile .duration.selected p {
            color: white; }
        .durations .duration-tiles .duration-tile .duration .symbol {
          vertical-align: super; }
        .durations .duration-tiles .duration-tile .duration .last-month {
          font-size: 16pt; }
        .durations .duration-tiles .duration-tile .duration .how-long {
          font-size: 14pt; }
        .durations .duration-tiles .duration-tile .duration.multi-year-discount .how-long {
          font-size: 18pt; }
        .durations .duration-tiles .duration-tile .duration .discount {
          font-size: 16pt; }
        .durations .duration-tiles .duration-tile .duration .yearly-price {
          font-size: 24pt; }
          .durations .duration-tiles .duration-tile .duration .yearly-price .symbol {
            font-size: 14pt; }
        .durations .duration-tiles .duration-tile .duration .full-price {
          font-size: 14pt; }
          .durations .duration-tiles .duration-tile .duration .full-price .symbol {
            font-size: 10pt; }

form.reset {
  text-align: center; }
  form.reset input, form.reset button {
    margin: 0 auto; }
