/*
 * SupportHost Components
 * Permanent styles for page components
 *
 */



/* Responsive */
@media (max-width: 781px) {
  .reverse-mobile {
    flex-direction: column-reverse;
  }
  .column-mobile {
    flex-direction: column;
  }
}
/* End of responsive */




/* Corrections */
.has-small-font-size .currency-data {
    font-size: var(--wp--preset--font-size--small) !important;
}
/* End of corrections */



/* Utilities */
.sh-noise-texture::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.sh-gradient-top {
    position: relative;
}
.sh-gradient-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--wp--preset--color--green-dark), var(--wp--preset--color--green));
    border-radius: 0 0 4px 4px;
}
.sh-green-left-bar {
    position: relative;
    padding-left: 28px;
}
.sh-green-left-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 0;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--wp--preset--color--green), rgba(45, 199, 153, 0.1));
}
.sh-svg-accredited img {
    width: 80%;
    height: auto;
    display: block;
    margin: auto;
}
.bold-green b, .bold-green strong {
    color: var(--wp--preset--color--green) !important;
}
.w-fit {
    width: fit-content;
}
/* End of Utilities */







/* Grid loop */
.grid-loop {
    gap: 25px;
}
.grid-loop li {
    margin: 0 !important;
}
/* End of grid loop */





/* Patterns and blocks */
.entry-content p.note {
    border: 1px solid var(--wp--preset--color--gray-lines);
    border-top: 4px solid var(--wp--preset--color--green);
    background: var(--wp--preset--color--white);
    border-radius: 0 0 10px 10px;
    padding: 18px 22px;
    margin: 2em 0;
    font-style: italic;
    font-size: 0.88rem;
    color: var(--wp--preset--color--gray-text);
    line-height: 1.7;
}
.entry-content p.note-info {
    border-top-color: #3b82f6;
}
.entry-content p.note-danger {
    border-top-color: #ef4444;
}
/* End of patterns and blocks */


/* History */
/* Container - la ul del post template */
.sh-tl-item {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
/* Linea verticale centrale */
.sh-tl-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--wp--preset--color--gray-lines, #e4e4e7);
  transform: translateX(-50%);
}
/* Ogni evento */
.sh-tl-item > .wp-block-post {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
}
/* Pallino verde centrale */
.sh-tl-item > .wp-block-post::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wp--preset--color--white, #fff);
  border: 3px solid var(--wp--preset--color--green, #2dc799);
  transform: translateX(-50%);
  z-index: 2;
  transition: all .3s;
}
.sh-tl-item > .wp-block-post:hover::before {
  background: var(--wp--preset--color--green, #2dc799);
  box-shadow: 0 0 0 6px rgba(45, 199, 153, .15);
}
/* Dispari: contenuto a sinistra */
.sh-tl-item > .wp-block-post:nth-child(odd) .sh-tl-content {
  grid-column: 1;
  text-align: right;
  padding-right: 36px;
}
.sh-tl-item > .wp-block-post:nth-child(odd) .sh-tl-content {
  align-items: flex-end;
}
/* Pari: contenuto a destra */
.sh-tl-item > .wp-block-post:nth-child(even) .sh-tl-content {
  grid-column: 2;
  padding-left: 36px;
}
.sh-tl-content .wp-block-post-featured-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--wp--preset--color--gray-lines, #e4e4e7);
}
.sh-tl-content .wp-block-post-featured-image img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .sh-tl-item::before {
    left: 16px;
  }
  .sh-tl-item > .wp-block-post {
    grid-template-columns: 1fr;
    padding-left: 44px;
  }
  .sh-tl-item > .wp-block-post::before {
    left: 16px;
    top: 4px;
  }
  .sh-tl-item > .wp-block-post:nth-child(odd) .sh-tl-content,
  .sh-tl-item > .wp-block-post:nth-child(even) .sh-tl-content {
    grid-column: 1;
    text-align: left;
    padding: 0;
    align-items: flex-start;
  }
}
/* End of history */








/* Dark Hero */
.hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    background: var(--wp--preset--color--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.sh-hero-dark {
    position: relative;
    overflow: hidden;
}
.sh-hero-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.sh-hero-dark::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(45,199,153,0.10) 0%, rgba(45,199,153,0.03) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.sh-hero-dark > .wp-block-columns {
    position: relative;
    z-index: 1;
}
.card-hover-lift {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card-hover-lift:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 199, 153, 0.25);
    box-shadow: 0 0 60px rgba(45, 199, 153, 0.08);
}
.quote-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .sh-hero-dark hr {
    display: none;
  }
}
/* End of Dark Hero */



/* Hosting plans */
.hosting-plans-featured {
    position: relative;
}
.hosting-plans-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    margin: 0;
}
/* End of Hosting plans */





/* Domain form */
.domain-form {
    display: flex;
    align-items: center;
    max-width: 680px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 6px 6px 6px 28px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.domain-form input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    color: #09090b;
    min-width: 0;
}
.domain-form input[type="text"]::placeholder {
    color: #a1a1aa;
}
.domain-form select {
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #09090b;
    padding: 0 8px;
    cursor: pointer;
}
.domain-form-actions {
    display: flex;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}
.domain-form-actions button {
    padding: 14px 22px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease;
}
.domain-form-actions button[value="transfer"] {
    background: var(--wp--preset--color--green);
    color: #fff;
    border-radius: 10px 0 0 10px;
}
.domain-form-actions button[value="transfer"]:hover {
    background: var(--wp--preset--color--green-dark);
}
.domain-form-actions button[value="register"] {
    background: var(--wp--preset--color--black);
    color: #fff;
    border-radius: 0 10px 10px 0;
}
.domain-form-actions button[value="register"]:hover {
    background: #1a1a1a;
}
/* Responsive */
@media (max-width: 640px) {
    .domain-form {
        flex-wrap: wrap;
        border-radius: 10px;
        padding: 16px 12px 8px 12px;
        gap: 12px;
    }
    .domain-form input[type="text"] {
        width: 100%;
    }
    .domain-form-actions {
        width: 100%;
    }
    .domain-form-actions button {
        flex: 1;
        text-align: center;
    }
}
/* Select2 inside domain form */
.domain-form .select2-container {
    min-width: 130px;
}
.domain-form .select2-container--default .select2-selection--single {
    border: none !important;
    background: transparent;
    height: auto;
    padding: 0 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    outline: none;
}
.domain-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #09090b;
    padding: 0;
    line-height: inherit;
}
.domain-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 0;
}
.domain-form .select2-container--default .select2-selection--single:focus,
.domain-form .select2-container--default.select2-container--open .select2-selection--single {
    border: none !important;
    box-shadow: none !important;
    outline: none;
}
/* End of Domain form */





/* Icons */
.check-row {
    display: flex;
    align-items: center;
    gap: 5px;
}
/* End of Icons */









/* Tutorial list items */
.sh-tutorial-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sh-tutorial-item {
    transition: all 0.2s;
}
.sh-tutorial-item:hover {
    border-color: var(--wp--preset--color--green) !important;
    box-shadow: 0 0 0 1px var(--wp--preset--color--green);
}
.sh-tutorial-item:hover .icon-container {
    color: var(--wp--preset--color--green) !important;
}
.sh-tutorial-item-title a {
    text-decoration: none;
    color: var(--wp--preset--color--black);
}
.sh-tutorial-item-title a:hover {
    color: var(--wp--preset--color--green-dark);
}
.sh-tutorial-item-excerpt {
    color: var(--wp--preset--color--gray-text);
}
/* End of Tutorial list items */







/* Tutorial sidebar */
.sh-tut-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}
.sh-tut-sidebar-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 8px 10px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wp--preset--color--black);
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s;
}
.sh-tut-sidebar-toggle:hover {
    background: var(--wp--preset--color--section-bg);
}
.is-open > .sh-tut-sidebar-toggle {
    color: var(--wp--preset--color--green-dark);
}
.sh-tut-sidebar-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--wp--preset--color--gray-text);
    background: var(--wp--preset--color--section-bg);
    padding: 1px 7px;
    border-radius: 10px;
}
.sh-tut-sidebar-arrow {
    margin-left: auto;
    color: var(--wp--preset--color--gray-text);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.is-open > .sh-tut-sidebar-toggle .sh-tut-sidebar-arrow {
    transform: rotate(180deg);
}
.sh-tut-sidebar-list {
    list-style: none;
    padding: 0 0 8px 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.is-open > .sh-tut-sidebar-list {
    max-height: 2000px;
}
.sh-tut-sidebar-list li a {
    display: block;
    padding: 5px 10px 5px 20px;
    font-size: 0.8rem;
    color: var(--wp--preset--color--gray-text);
    text-decoration: none;
    border-left: 2px solid transparent;
    border-radius: 0 6px 6px 0;
    transition: all 0.15s;
}
.sh-tut-sidebar-list li a:hover {
    background: var(--wp--preset--color--section-bg);
    color: var(--wp--preset--color--black);
}
.sh-tut-sidebar-toggle span:first-child {
    flex: 1;
    text-align: left;
}
.sh-tut-sidebar-count,
.sh-tut-sidebar-arrow {
    flex-shrink: 0;
}
.single-tutorial .sh-tut-sidebar-list li.is-active a {
    background: var(--wp--preset--color--light-green);
    color: var(--wp--preset--color--green-dark);
    font-weight: 600;
    border-left-color: var(--wp--preset--color--green);
}
/* End of Tutorial sidebar */







/* Pricing table */
.period-selector-container {
    width: fit-content;
    gap: 3px;
    background: #f4f4f5;
    border: none !important;
    border-radius: 12px !important;
    padding: 4px !important;
    position: relative;
}
.period-selector-container p {
    padding: 10px 22px;
    border-radius: 9px;
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--wp--preset--color--gray-text);
    transition: all .3s;
    cursor: pointer;
}
.period-selector-container p.active {
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--black);
    box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.03);
}
.period-selector-container p:not(.active):hover {
    color: var(--wp--preset--color--black);
}
.period-selector-container .save {
    position: absolute;
    top: -10px;
    right: -12px;
    padding: 2px 8px;
    border-radius: 100px;
    background: var(--wp--preset--color--orange);
    color: white;
    font-size: 10px;
}
@media (max-width: 550px) {
    .period-selector-container {
        flex-direction: column;
    }
    .period-selector-container .save {
        top: unset;
        bottom: -10px;
    }
    .period-selector-container {
        display: flex;
        align-items: stretch;
    }
    .period-selector-container p {
        text-align: center;
    }
}
.pricing-table__old-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--wp--preset--color--gray-text);
    text-decoration: none;
    position: relative;
    display: block;
    text-align: center;
    width: fit-content;
}
.pricing-table__old-price::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 1px;
    background: var(--wp--preset--color--gray-text);
    transform: rotate(-12deg);
}

.pricing-table__card {
    transition: all .5s cubic-bezier(.22, 1, .36, 1);
}
.pricing-table__card .wenk {
    border-bottom: 1px dotted #a1a1aa;
}
.pricing-table__card a:has(.wenk) {
    text-decoration: none;
}
.pricing-table__card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    /* border-color: var(--wp--preset--color--green); */
}
.pricing-table__card.popular, .pricing-table__card.popolare {
    position: relative;
    border: 2px solid var(--wp--preset--color--green) !important;
}
.pricing-table__card.popular::before, .pricing-table__card.popolare::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--wp--preset--color--green-dark), var(--wp--preset--color--green));
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 100px;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 1;
    text-transform: uppercase;
}
/* Italiano */
.pricing-table__card.popolare::before {
    content: 'IL PIÙ VENDUTO';
}
.pricing-table__card.recommended::before {
    content: 'Recommended';
}
.pricing-table__card.consigliato::before {
    content: 'Consigliato';
}
.pricing-table__card.popular, .pricing-table__card.popolare {
    position: relative;
    border: 2px solid var(--wp--preset--color--green) !important;
}
.pricing-table__card.popular .wp-block-button.is-style-outline .wp-block-button__link,
.pricing-table__card.popolare .wp-block-button.is-style-outline .wp-block-button__link {
    background: linear-gradient(135deg, #1e8566, #2dc799) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 24px rgba(45,199,153,.25);
}

.pricing-table__card.popular .wp-block-button.is-style-outline .wp-block-button__link:hover,
.pricing-table__card.popolare .wp-block-button.is-style-outline .wp-block-button__link:hover {
    box-shadow: 0 8px 40px rgba(45,199,153,.4);
}


/* Compare toggle button */
.sh-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1.5px solid var(--wp--preset--color--gray-lines);
    background: var(--wp--preset--color--white);
    font-size: 14px;
    font-weight: 600;
    color: var(--wp--preset--color--green-dark);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.sh-toggle:hover {
    border-color: var(--wp--preset--color--green);
}
.sh-toggle .arrow {
    transition: transform 0.3s;
    font-size: 10px;
}
.sh-compare-wrap.open .sh-toggle .arrow {
    transform: rotate(180deg);
}

/* Table wrapper – hidden by default */
.sh-compare-table-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.sh-compare-wrap.open .sh-compare-table-wrap {
    max-height: 3000px;
}
/* End of Pricing table */






/* Tabs */
#sh-tabs {
  scroll-margin-top: 40px;
}
.sh-tab {
  flex: 1;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--wp--preset--color--gray-medium, #a1a1aa);
  text-align: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  background: transparent;
}
.sh-tab.active {
  background: var(--wp--preset--color--white, #fff) !important;
  color: var(--wp--preset--color--dark, #09090b);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}
.sh-tab:hover:not(.active) {
  color: var(--wp--preset--color--gray-text, #52525b) !important;
  background: #ffffffb3 !important;
}
.sh-tab-panel {
  display: none !important;
}
.sh-tab-panel.active {
  display: flex !important;
  animation: shTabFadeUp .4s cubic-bezier(.22, 1, .36, 1);
}
@keyframes shTabFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
/* End of Tabs */










/* Forms */
.sh-form-row > p {
  display: flex;
  gap: 14px;
}
.sh-form-row > p > label {
  flex: 1;
}
.sh-time-row > p {
  display: flex;
  align-items: end;
  gap: 14px;
}
@media (max-width: 640px) {
  .sh-form-row > p {
    flex-direction: column;
    gap: 0;
  }
  .sh-form-row > p > label {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 641px) {
    .sh-time-row > p > label:first-child {
      position: relative;
      margin-right: 20px;
    }
    .sh-time-row > p > label:first-child::after {
      content: '→';
      position: absolute;
      right: -28px;
      top: 50%;
      font-size: 16px;
      color: var(--wp--preset--color--gray-medium, #a1a1aa);
      font-weight: 600;
      transform: translateY(-50%);
    }
}
/* End of forms */






/* Notice box */
.sh-notice {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 12px;
  margin: 8px 0;
}
.sh-notice-info {
  background: #ecfdf5;
  border: 1px solid var(--wp--preset--color--green, #2dc799);
}
.sh-notice-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}
.sh-notice-content strong {
  font-size: 14px;
  color: var(--wp--preset--color--dark, #09090b);
  display: block;
  margin-bottom: 4px;
}
.sh-notice-content p {
  font-size: 13px;
  color: var(--wp--preset--color--gray-text, #52525b);
  line-height: 1.6;
  margin: 0 0 12px;
}
.sh-notice-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--wp--preset--color--green-dark, #1e8566);
  transition: all .3s;
  text-decoration: none;
}
.sh-notice-btn:hover {
  background: var(--wp--preset--color--green, #2dc799);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 199, 153, .25);
}
/* End of Notice box */





/* Steps connector */
@media (min-width: 782px) {
    .sh-steps > .grid-4, .sh-steps > .grid-3 {
        position: relative;
        z-index: 1;
    }
    .sh-steps > .grid-4::before, .sh-steps > .grid-3::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: linear-gradient(90deg, var(--wp--preset--color--green), var(--wp--preset--color--green-dark), var(--wp--preset--color--green), var(--wp--preset--color--green-dark));
        border-radius: 2px;
        opacity: .3;
        z-index: -1;
    }
    .sh-steps > .grid-4 > div:hover p.has-big-font-size, .sh-steps > .grid-3 > div:hover p.has-big-font-size {
        border-color: var(--wp--preset--color--green) !important;
        background: var(--wp--preset--color--light-green) !important;
        color: var(--wp--preset--color--green-dark);
    }
}
/* End of Steps connector */

/* Expandable gallery */
.sh-cert-gallery {
    max-height: 340px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}
.sh-cert-gallery.show-all {
    max-height: none;
}
.sh-cert-gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--wp--preset--color--white));
    pointer-events: none;
    transition: opacity 0.3s;
}
.sh-cert-gallery.show-all::after {
    opacity: 0;
}
.sh-cert-gallery figure {
    width: 22%;
}
/* End of Expandable gallery */







/* Promo input */
.sh-promo-input {
    display: flex;
    align-items: center;
    margin-top: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s;
    width: fit-content;
}
.sh-promo-input:focus-within {
    border-color: var(--wp--preset--color--green);
}
.sh-promo-input svg {
    margin-left: 10px;
    flex-shrink: 0;
}
.sh-promo-input input {
    flex: 1;
    padding: 8px 10px;
    border: none;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    min-width: 0;
    max-width: 100px;
}
.sh-promo-input input::placeholder {
    color: rgba(255,255,255,0.25);
}
.sh-promo-input button {
    padding: 6px 14px;
    margin: 4px;
    background: var(--wp--preset--color--green-dark);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}
.sh-promo-input button:hover {
    background: var(--wp--preset--color--green);
}
/* End of promo input */