/*
Theme Name: Slabd Theme
Theme URI: 
Author: Cavaon
Author URI: http://cavaon.com/
Description: This is a custom wordpress theme for Slabdw for 2019
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-theme
*/

.woocommerce-price-suffix {
	display: none;
}

#add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row{
	padding:0;

}

.stripe-card-group,
.wc-stripe-elements-field{
	width: 100%;
}

p, li, td, th, dt, dd{
	font-family: "Rubik", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #000;
}

.page .content-area .content-left-image .right-content p{
	color:#000 !important;
}

.page .content-area .content-right-image .right-content p {
	color:#000 !important;
}

.password-input{
	width: 100%;
}

.header-menu a:hover{
	color:#000;
}


/* Styling for checked radio button labels */
.form-group-wrap.group-2.shipping_option_wrap .tab-label input[type="radio"]:checked + strong {
    font-weight: bold;
    color: #007bff;
}

/* Container styling */
.shipping-section {
    margin-bottom: 20px;
}

.shipping-section h4 {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #333;
}

/* Flex container for radio button options */
.shipping-options .option-group {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between each option */
}


/* Hover effect for labels */
.shipping-options .tab-label:hover {
    background-color: #f1f9ff;
    border-color: #007bff;
}

/* Styling for strong (title text) inside labels */
.shipping-options .tab-label strong {
    font-size: 1em;
    color: #333;
}

/* Description text styling inside labels */
.shipping-options .tab-label p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

/* General option group adjustments */
.option-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

/* Specific styling for dropdowns inside options */
.shipping-options .tab-label select {
    margin-left: 10px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

/* Additional adjustments for dropdown container */
#combine_shipping_details {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Error message styling */
.form-group-wrap.group-2.shipping_option_wrap .error-message {
    color: red;
    margin-top: 10px;
    font-size: 0.9em;
}

.shipping-option-label {
	display: flex; /* Align input and text horizontally */
	align-items: center; /* Center input and text */
	gap: 10px; /* Space between input and text */
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 8px;
	background-color: #f9f9f9;
	cursor: pointer;
	transition: all 0.3s ease; /* Smooth hover effect */
  }
  
  .shipping-option-label:hover {
	background-color: #f1f9ff;
	border-color: #007bff;
  }
  
  /* Ensure radio button or dropdown is not hidden */
  .shipping-option-label input[type="radio"], 
  .shipping-option-label select {
	position: relative; /* Relative to avoid being clipped */
	z-index: 1; /* Bring above label */
	display: inline-block; /* Ensure visibility */
	margin: 0 10px 0 0; /* Space from the label text */
	vertical-align: middle; /* Align properly with text */
	cursor: pointer;
  }
  
  /* Highlight selected radio button's label */
  .shipping-option-label input[type="radio"]:checked + strong {
	font-weight: bold;
	color: #007bff;
  }
  

