// Domain Register
.rstore-domain-search {
  .search-field {
    border: 1px solid #e7e7e7;
    padding: 10px;
    font-size: 14px;
  }
}

// Domain Transfer
.elementor-widget-wp-widget-rstore_transfer {
  .search-form {
    display: flex;

    >label {
      flex-grow: 4;
      margin: 0;

      .search-field {
        width: 100%;
        border: 1px solid #e7e7e7;
        padding: 10px;
        font-size: 14px;
      }
    }

    .search-submit {
      flex-grow: 1;
    }
  }
}

// Reseller Product
.elementor-widget-wp-widget-rstore_product {
  .elementor-widget-container {
    background-color: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
  }

  .rstore-product-icons {
    margin-bottom: 20px;

    svg {
      height: 80px;
    }
  }

  .rstore-product-header {
    margin-bottom: 15px;

    h5 {
      font-size: 19px;
      font-weight: 600;
      color: var(--main-color);
      font-family: var(--main-font);
      margin: 0;
    }
  }

  .rstore-pricing {
    margin: 10px 0;
    color: var(--secondary-color);
    font-size: 15px;

    .rstore-price {
      font-size: 22px;
    }
  }

  .rstore-add-to-cart {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transition: all .3s ease-in-out;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 3px;
  }

  .rstore-product-summary {
    ul {
      margin: 0;
      padding: 0;
      list-style: none;

      li {
        color: var(--sub-color);
        font-size: 14px;
        margin-bottom: 10px;

        &:last-child {
          margin-bottom: 0;
        }
      }
    }
  }

  .rstore-product-permalink {
    margin-top: 10px;

    .link {
      color: var(--secondary-color);
      font-weight: 500;
      text-decoration: none;
      font-size: 15px;
    }
  }
}