/*
 * SupportHost Legacy
 * Temporary fixes for old components not yet migrated.
 * DELETE this file when migration is complete.
 *
 * When you migrate a component:
 * 1. Move its new styles to components.css
 * 2. Remove the legacy fix from here
 * 3. When this file is empty, delete it and dequeue from plugin
 */



/** Pricing table **/
  #period-selector {
    width: fit-content;
    gap: 0;
  }
  #period-selector p {
    padding: 10px 20px;
    border-radius: 15px;
    margin: 3px;
    font-size: var(--wp--preset--font-size--small);
    font-weight: 500;
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
    cursor: pointer;
  }
  #period-selector p.active {
    background-color: var(--wp--preset--color--black);
    color: var(--wp--preset--color--white);
  }
  #period-selector p:not(.active):hover {
    background-color: var(--wp--preset--color--gray-lines);
  }
  .period-price:not(.active) {
    display: none;
  }
  .pricing-table-price .out-of-stock {
    font-size: var(--wp--preset--font-size--medium);
    font-weight: 400;
  }
  .decimal {
    font-size: var(--wp--preset--font-size--small);
  }
  .ar-price-table .currency-data {
    font-size: var(--wp--preset--font-size--x-large);
  }
  .pricing-table-price {
    font-size: var(--wp--preset--font-size--big);
    font-weight: 600;
    line-height: 1;
  }
  @media (max-width: 1023px) {
    .pricing-table-spacer {
      height: 0 !important;
    }
  }
  @media (max-width: 550px) {
    #period-selector {
      flex-direction: column;
    }
  }
/** End of pricing table **/



  /* Steps */
    .step-line {
      position: relative;
      height: 1px;
      background-color: var(--wp--preset--color--gray-text);
      margin-top: 75px;
      margin-bottom: 75px;
      width: 100%;
    }
    .step-number {
      width: 80px;
      height: 80px;
      position: absolute;
      top: -40px;
      left: calc(50% - 40px);
      text-align: center;
    }
    .step-number:before {
      background-color: var(--wp--preset--color--green);
      border-radius: 50%;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-top: -10px;
      margin-left: -10px;
      transition-property: all;
      transition-timing-function: ease-out;
      transition-duration: 0.4s;
      content: "";
    }
    .step-inner {
      color: #fff;
      line-height: 80px;
      text-align: center;
      width: 100%;
      font-weight: 700;
      z-index: 9999;
      visibility: hidden;
      position: relative;
      transition-property: all;
      transition-timing-function: ease-out;
      transition-duration: 0.2s;
    }
    .step-box:hover .step-number:before {
      width: 70px;
      height: 70px;
      margin-left: -35px;
      margin-top: -35px;
    }
    .step-box:hover .step-inner {
      visibility: visible;
      font-size: 22.5px;
    }
/* End of Steps */





/* Four columns */
  @media (max-width: 1023px) {
    .ar-four-columns {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 781px) {
    .ar-four-columns {
      display: grid;
      grid-template-columns: repeat(1, 1fr) !important;
    }
  }
/* End of four columns */









/* Various */
  @media (min-width: 1900px) {
    .imgfull {
      max-width: 1900px;
      margin: 0 auto !important;
    }
  }
/* End of various */




/* Patterns and Blocks */
  .media-text img {
    min-width: 100%;
  }
  .price-list th {
    word-break: auto-phrase;
  }
  .wp-block-image:not(.alignleft):not(.alignright) {
    text-align: center;
  }
  .reviews-logo figure {
    margin: 0 auto;
  }
/* End of Patterns and Blocks */