/* BP Bookings Frontend Styles */

.bp-bookings-form-container {
    background-color: #ffffff;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: none;
    border-top-color: #efefed;
    border-right-color: #efefed;
    border-bottom-color: #efefed;
    border-left-color: #efefed;
    transform: translatex(0px) translatey(0px);
    padding: 20px;
    border: 1px solid #eeeeec;
}

.bp-bookings-form-container h3 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 24px;
}

.bp-booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bp-form-group {
    display: flex;
    flex-direction: column;
}

.bp-form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.bp-form-group input,
.bp-form-group select,
.bp-form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.bp-form-group input:focus,
.bp-form-group select:focus,
.bp-form-group textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.1);
}

.bp-form-group input.bp-date-booked {
    border-color: #dc3545;
    background-color: #f8d7da;
    color: #721c24;
    position: relative;
}

.bp-form-group input.bp-date-booked:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220,53,69,0.1);
}

.bp-form-group input.bp-date-booked::after {
    content: "⚠️";
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #dc3545;
    pointer-events: none;
}


.bp-date-help {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.bp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

@media (max-width: 480px) {
    .bp-form-row {
        grid-template-columns: 1fr;
    }
}

.bp-apartment-info {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    margin: 0;
    font-size: 14px;
    text-align: center;
}

/* Price calculation */
.bp-price-calculation {
    background-color: #FAFAF7;
    border: 1px solid #efefed;
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
}

.bp-price-breakdown {
    margin-bottom: 10px;
}

.bp-price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #757575;
}


.bp-price-total {
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    border-top: 1px solid #efefed;
    padding-top: 10px;
    margin-top: 10px;
}

.bp-availability-status {
    padding: 8px 12px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    background-color: #4CAF50;
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
}

.bp-availability-status.available {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bp-availability-status.unavailable {
    background-color: #f44336;
    color: #ffffff;
}

.bp-availability-status i {
    margin-right: 5px;
}

/* Form actions */
.bp-form-actions {
    margin-top: 20px;
    text-align: center;
}

.bp-step-guest {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #efefed;
}

.bp-step-guest h4 {
    margin-bottom: 20px;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.bp-back-button {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
    padding: 12px 24px;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.bp-back-button:hover {
    background-color: #e9ecef;
    color: #495057;
}

.bp-payment-button {
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bp-payment-button:hover {
    background-color: #218838;
}

.bp-book-button {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 60px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bp-book-button:hover:not(:disabled) {
    background: #005a87;
}

.bp-book-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.bp-loading {
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Messages */
.bp-form-messages {
    margin-top: 15px;
}

.bp-message {
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
}

.bp-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.bp-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Responsive design */
@media (max-width: 768px) {
    .bp-bookings-form-container {
        margin: 10px;
        padding: 15px;
    }
    
    .bp-bookings-form-container h3 {
        font-size: 20px;
    }
    
    .bp-form-row {
        grid-template-columns: 1fr;
    }
    
    .bp-book-button {
        width: 100%;
        min-width: auto;
    }
}

/* Booking page styles */
.bp-booking-page-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bp-booking-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.bp-booking-header h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 28px;
}

.bp-booking-subtitle {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.bp-booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .bp-booking-content {
        grid-template-columns: 1fr;
    }
}

.bp-booking-details h3,
.bp-booking-form-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.bp-booking-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.bp-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.bp-info-label {
    font-weight: 600;
    color: #555;
}

.bp-info-value {
    color: #333;
}

.bp-info-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    padding-top: 15px;
    border-top: 2px solid #0073aa;
    margin-top: 15px;
    color: #0073aa;
}

.bp-booking-form-section {
    background: #fff;
}

.bp-booking-form .bp-form-group {
    margin-bottom: 15px;
}

.bp-booking-form .bp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* 769px and larger screen sizes */
@media (min-width: 769px) {
    .bp-book-button {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .bp-booking-form .bp-form-row {
        grid-template-columns: 1fr;
    }
}

.bp-booking-form .bp-form-actions {
    margin-top: 25px;
    text-align: center;
}

.bp-booking-form .bp-book-button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 250px;
}

.bp-booking-form .bp-book-button:hover:not(:disabled) {
    background: #005a87;
}

.bp-booking-form .bp-book-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Payment page styles */
.bp-payment-page-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bp-payment-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.bp-payment-header h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 28px;
}

.bp-payment-subtitle {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.bp-payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .bp-payment-content {
        grid-template-columns: 1fr;
    }
}

.bp-payment-details h3,
.bp-payment-methods h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.bp-payment-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.bp-payment-options {
    margin-bottom: 25px;
}

.bp-payment-option {
    margin-bottom: 15px;
}

.bp-payment-option input[type="radio"] {
    display: none;
}

.bp-payment-label {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.bp-payment-option input[type="radio"]:checked + .bp-payment-label {
    border-color: #0073aa;
    background: #f0f8ff;
}

.bp-payment-icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-payment-icon img {
    max-width: 100%;
    max-height: 100%;
}

.bp-payment-icon .dashicons {
    font-size: 24px;
    color: #0073aa;
}

.bp-payment-text {
    flex: 1;
}

.bp-payment-text strong {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.bp-payment-text span {
    font-size: 14px;
    color: #666;
}

.bp-payment-actions {
    text-align: center;
    margin-top: 25px;
}

.bp-pay-button {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 250px;
}

.bp-pay-button:hover:not(:disabled) {
    background: #218838;
}

.bp-pay-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.bp-payment-messages {
    margin-top: 20px;
}

/* Full booking form styles */
.bp-full-booking-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bp-full-booking-container h2 {
    margin: 0 0 30px 0;
    color: #333;
    font-size: 28px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.bp-full-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bp-guest-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin: 20px 0;
}

.bp-guest-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.bp-full-booking-form .bp-form-group {
    margin-bottom: 15px;
}

.bp-full-booking-form .bp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 480px) {
    .bp-full-booking-form .bp-form-row {
        grid-template-columns: 1fr;
    }
}

.bp-full-booking-form .bp-form-actions {
    margin-top: 30px;
    text-align: center;
}

.bp-full-booking-form .bp-book-button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 250px;
}

.bp-full-booking-form .bp-book-button:hover:not(:disabled) {
    background: #005a87;
}

.bp-full-booking-form .bp-book-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* WordPress theme compatibility */
.bp-bookings-form-container *,
.bp-booking-page-container * {
    box-sizing: border-box;
}

.bp-bookings-form-container input[type="date"],
.bp-booking-page-container input[type="date"] {
    position: relative;
}

/* Custom styles for form elements */
/* Form row */
/* moved to class-based: .bp-booking-form .bp-form-row */

/* Heading */
/* removed builder-specific heading rule */

/* Label */
#bp-booking-form .bp-form-row .bp-form-group label{
    font-family: 'Poppins', sans-serif !important;
}

/* Check in */
/* moved to .bp-booking-form input[name='check_in'] */
/*#check_in{
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	border-bottom-left-radius:12px;
	border-bottom-right-radius:12px;
	font-family:'Poppins', sans-serif;
	font-weight:500;
	font-size:14px;
	border-top-color:#6a6a6a;
	border-right-color:#e2e2e2;
	border-bottom-color:#e2e2e2;
	border-left-color:#e2e2e2;
	border-color:#e2e2e2;
	color:#757575;
	height: 60px;
	padding: 0 15px;
	width: 100%;
	box-sizing: border-box;
}*/

/* Check out */
/* moved to .bp-booking-form input[name='check_out'] */
/*#check_out{
	font-family:'Poppins', sans-serif;
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	border-bottom-left-radius:12px;
	border-bottom-right-radius:12px;
	border-color:#e2e2e2;
	color:#757575;
	font-weight:500;
	height: 60px;
	padding: 0 15px;
	width: 100%;
	box-sizing: border-box;
}*/

/* Guest count */
/* moved to .bp-booking-form select[name='guest_count'] */
/*#guest_count{
	font-family:'Poppins', sans-serif;
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	border-bottom-left-radius:12px;
	border-bottom-right-radius:12px;
	color:#757575;
	transform:translatex(0px) translatey(0px);
	font-weight:500;
	height: 60px;
	padding: 0 15px;
	width: 100%;
	box-sizing: border-box;
	background-color: #ffffff;
}*/

/* Book button */
/* style moved to .bp-book-button */

/* Label */
/* moved to .bp-booking-form .bp-form-group label */

/* Form group */
/* moved to .bp-booking-form .bp-form-row .bp-form-group */

/* Form group */
/* moved to .bp-booking-form .bp-form-group */

/* Price calculation */
/* moved to .bp-price-calculation */

/* Price breakdown */
.bp-price-calculation .bp-price-breakdown{
	font-family:'Poppins', sans-serif;
}

/* Span Tag */
.bp-price-breakdown .bp-price-total span{
	color:#000000;
}

/* Availability status */
/* moved to .bp-availability-status */

/* Bookings form container */
/* removed builder-specific container rule */

/* Label */
/* removed builder-specific label rule */

/* Label */
/* moved to .bp-booking-form .bp-form-row .bp-form-group label */

/* Label */
/* removed builder-specific label font rule */

/* Check availability */
/* moved to .bp-booking-form button[type='button'].bp-book-button */

/* Form actions */
/* moved to .bp-booking-form .bp-form-actions */

/* Span Tag */
/* removed builder-specific span rule */

/* Span Tag */
/* removed builder-specific total span rule */

/* Brxe yonjnr */
/* removed builder-specific color override */

/* Guest name */
/* moved to .bp-step-guest input[name='guest_name'] */

/* Guest email */
/* moved to .bp-step-guest input[name='guest_email'] */

/* Guest phone */
/* moved to .bp-step-guest input[name='guest_phone'] */

/* Guest notes */
/* moved to .bp-step-guest textarea[name='guest_notes'] */

/* Label */
.bp-step-guest .bp-form-group label{
    margin-top:12px;
}

/* Payment */
/* moved to .bp-payment-button */

/* Back dates */
/* moved to .bp-back-button */

/* Heading */
/* moved to .bp-step-guest h4 */

.bp-bookings-form-container input[type="date"]::-webkit-calendar-picker-indicator,
.bp-booking-page-container input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Checkbox styles */
.bp-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 15px;
}

.bp-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.bp-checkbox-text {
    line-height: 1.4;
    font-size: 14px;
}

.bp-checkbox-text a {
    color: #007cba;
    text-decoration: underline;
}

.bp-checkbox-text a:hover {
    color: #005a87;
}

/* Invoice fields */
.bp-invoice-fields {
    margin-top: 15px;
}

.bp-invoice-fields .bp-form-group {
    margin-bottom: 15px;
}

.bp-invoice-fields {
    margin-top: 15px;
}

.bp-invoice-fields input[type="text"] {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-family: 'Poppins', sans-serif !important;
    transition: border-color 0.3s ease !important;
    background-color: transparent !important;
}

.bp-invoice-fields input[type="text"]:focus {
    outline: none !important;
    border-color: #007cba !important;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1) !important;
}

.bp-invoice-fields label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Agreements section */
.bp-agreements {
    margin: 20px 0;
}

/* 478px and smaller screen sizes */
@media (max-width:478px){

    /* removed builder-specific layout tweaks */
	
    /* removed builder-specific container margins */
	
	/* Heading */
	/* removed empty #bp-step-guest h4 block (replaced by .bp-step-guest h4) */
	
}

/* 769px and larger screen sizes */
@media (min-width:769px){

    /* moved to .bp-book-button */
	
/* Class-based equivalents to avoid ID-dependence when forms are duplicated */
.bp-booking-form .bp-form-row{
	margin-top:0px;
	margin-bottom:0px;
}

.bp-booking-form .bp-form-group label{
	color:#15171e;
	font-weight:500;
	font-size:14px;
}

.bp-booking-form .bp-form-row .bp-form-group{
	margin-bottom:0px;
}

.bp-booking-form .bp-form-group{
	margin-bottom:0px;
}

.bp-booking-form .bp-form-actions{
	margin-top:0px;
}

.bp-bookings-form-container .bp-booking-form .bp-price-calculation .bp-price-breakdown .bp-price-item span{
	font-family:'Poppins', sans-serif !important;
}

.bp-bookings-form-container .bp-booking-form .bp-price-calculation .bp-price-breakdown .bp-price-total span{
	font-family:'Poppins', sans-serif !important;
}

/* Inputs by name (instead of IDs) */
.bp-booking-form input[name='check_in']{
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	border-bottom-left-radius:12px;
	border-bottom-right-radius:12px;
	font-family:'Poppins', sans-serif;
	font-weight:500;
	font-size:14px;
	border-top-color:#6a6a6a;
	border-right-color:#e2e2e2;
	border-bottom-color:#e2e2e2;
	border-left-color:#e2e2e2;
	border-color:#e2e2e2;
	color:#757575;
	height: 60px;
	padding: 0 15px;
	width: 100%;
	box-sizing: border-box;
}

.bp-booking-form input[name='check_out']{
	font-family:'Poppins', sans-serif;
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	border-bottom-left-radius:12px;
	border-bottom-right-radius:12px;
	border-color:#e2e2e2;
	color:#757575;
	font-weight:500;
	height: 60px;
	padding: 0 15px;
	width: 100%;
	box-sizing: border-box;
}

.bp-booking-form select[name='guest_count']{
	font-family:'Poppins', sans-serif;
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	border-bottom-left-radius:12px;
	border-bottom-right-radius:12px;
	color:#757575;
	transform:translatex(0px) translatey(0px);
	font-weight:500;
	height: 60px;
	padding: 0 15px;
	width: 100%;
	box-sizing: border-box;
	background-color: #ffffff;
}

/* Calculation and status by class */
.bp-price-calculation{
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	border-bottom-left-radius:12px;
	border-bottom-right-radius:12px;
	background-color:#fafaf7;
	transform:translatex(0px) translatey(0px);
	margin-top:12px;
	margin-bottom:12px;
	padding-left:12px;
	padding-right:12px;
	padding-top:12px;
	padding-bottom:12px;
}

.bp-availability-status{
	border-top-left-radius:8px;
	border-top-right-radius:8px;
	border-bottom-left-radius:8px;
	border-bottom-right-radius:8px;
	font-size:14px;
	font-family:'Poppins', sans-serif;
}

/* Guest section inputs */
.bp-step-guest input[name='guest_name'],
.bp-step-guest input[name='guest_email'],
.bp-step-guest input[name='guest_phone']{
	border-color:#e2e2e2;
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	border-bottom-left-radius:12px;
	border-bottom-right-radius:12px;
}

.bp-step-guest textarea[name='guest_notes']{
	border-color:#e2e2e2;
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	border-bottom-left-radius:12px;
	border-bottom-right-radius:12px;
}

.bp-step-guest h4{
	text-transform:uppercase;
	text-align:center;
	font-size:20px;
}

/* Buttons by class */
.bp-payment-button{
	width:100% !important;
	height:60px;
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	border-bottom-left-radius:12px;
	border-bottom-right-radius:12px;
	background-color:#182d75;
	margin-top:12px;
	font-family:'Poppins', sans-serif;
}

.bp-back-button{
	font-family:'Poppins', sans-serif;
	margin-top:12px; /* ensure spacing from payment button when stacked */
}

/* Target the availability/check button without relying on its ID */
.bp-booking-form button[type='button'].bp-book-button{
	background-color:#182d75;
}
	/* Bookings form container */
	#brxe-rqldvz .bp-bookings-form-container{
		margin-top:0px;
		margin-bottom:0px;
		padding-left:20px;
		padding-right:20px;
		padding-top:20px;
		padding-bottom:20px;
	}
	
	/* Heading */
	#brxe-rqldvz h3{
		font-size:24px;
	}
	
}