/*
Theme Name: PWD Custom Impreza Child
Template: Impreza
Version: 1.0
Author:	PWD
Theme URI: https://pwd.com.au/
Author URI: https://pwd.com.au/
*/

/*Add your own styles here:*/


.container {
  width: 100%;  /* Ensure the container takes up the full width */
  max-width: 1200px; /* Max width of container */
  margin: 0 auto; /* Center the container horizontally */
  padding: 20px; /* Add some padding for spacing */
  box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
}

/* For smaller screens (e.g., phones and tablets), you might reduce the padding */
@media screen and (max-width: 768px) {
  .container {
    padding: 15px;
  }
}

/* For even smaller screens (e.g., mobile), you could make adjustments */
@media screen and (max-width: 480px) {
  .container {
    padding: 10px;
  }
}


/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container for the pricing cards */
.pricing-container {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between cards */
  padding: 40px;
  flex-wrap: wrap; /* Wrap cards on smaller screens */
}

/* Individual pricing card */
.pricing-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for cards */
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Plan name */
.plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: capitalize;
}

/* Price */
.price {
  font-size: 2rem;
  font-weight: bold;
  color: #4CAF50; /* Green color */
  margin: 20px 0;
}

/* Features list */
.features {
  list-style-type: none;
  margin-bottom: 20px;
}

.features li {
  font-size: 1rem;
  color: #333;
  margin: 10px 0;
}

/* CTA Button */
.cta-button {
  background-color: #4CAF50; /* Green button */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #45a049; /* Darker green on hover */
}


/* Responsive Design for smaller screens */
@media screen and (max-width: 768px) {
  .pricing-card {
    width: 100%; /* Cards will take full width on small screens */
    margin-bottom: 20px; /* Add spacing between stacked cards */
  }
}
@media screen and (min-width: 999px) {

	header .l-subheader-cell.at_right{
		width:40%!important	
	}

	header .l-subheader-cell.at_left{
		width:40%!important	
	}
}

.read-more-btn {
  margin: 0 auto;
}

.woocommerce .cart_totals:not(.w-cart-totals) h2 {
  text-transform: capitalize;
}

.checkout-button {
  text-transform: capitalize !important;
}

.woocommerce-additional-fields {
    display: none;
}

#billing_address_2_field .screen-reader-text {
      position: unset;
      display: unset;
}

.woocommerce-form-row label, .woocommerce .form-row label {
  margin-bottom: unset;
  display: unset;
    position: unset;
}