/*
Theme Name: Essentials Child
Theme URI: https://essentials.pixfort.com/
Author: PixFort
Template: essentials
Author URI: http://themeforest.net/user/pixfort
Description: Essentials child theme
Version: 1.0.2
License: Envato Marketplaces Split Licence
License URI: https://themeforest.net/licenses/standard
Text Domain: essentials-child
Tags: header-builder, footer-builder, divider-builder, popup-builder, premium-design, translation-ready

*/

.wp-block-quote {
    overflow-wrap: break-word;
    padding: 15px 20px 15px 45px;
    border: 1px solid #eee;
    border-left: 10px solid #0a083b;
  	margin:0px 0px 20px 0px;
  	font-weight: bold;
  	background: #FEF3ED;
}
.wp-block-quote a {
  color: #0a083b;
}

.wp-block-quote a:hover {
  color: #0a083b;
}
.wp-block-image {
  border: 10px #FEF3ED solid;
  background: #FEF3ED;
  margin: 25px 0px 25px 0px !important;
  text-align: center;
}

.elementor hr {
    margin: 20px 0px 30px 0px !important;
    border: 1px solid #EAECF0;
    background: none !important;
    max-width: 100%;
}
.betterdocs-content-heading {
    margin-bottom: 20px;
}
.betterdocs-content a {
  color: #0a083b;
  font-weight: bold;
}
.betterdocs-content a:hover {
  color: #0a083b;
  font-weight: bold;
}

.wp-block-heading {
    font-weight: bold;
  	margin-bottom: 10px;
}

/* General list styling */
.wp-block-list {
    padding-left: 20px; /* Indent for hierarchy */
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Ensure UL has bullet points */
ul.wp-block-list {
    list-style-type: disc !important;  /* Force bullet points */
    list-style-position: outside !important;
    padding-left: 40px !important; /* Space for bullets */
    display: block !important; /* Ensure UL is displayed properly */
}

/* Ensure OL has numbers */
ol.wp-block-list {
    list-style-type: decimal !important; /* Force numbering */
    list-style-position: outside !important;
    padding-left: 40px !important; /* Space for numbers */
    display: block !important;
}

/* Ensure LI inside UL inherits bullet points */
ul.wp-block-list li {
    list-style-type: disc !important;
    display: list-item !important; /* Ensure it's treated as a list item */
    margin-bottom: 10px; /* Space between list items */
}

/* Ensure LI inside OL inherits numbers */
ol.wp-block-list li {
    list-style-type: decimal !important;
    display: list-item !important;
    margin-bottom: 10px;
}

/* Ensure UL inside an OL gets bullet points (not numbers) */
ol.wp-block-list ul {
    list-style-type: disc !important; /* Force bullets inside ordered lists */
    padding-left: 10px !important;
    padding-top: 10px !important;
}

/* Ensure list items inside nested UL keep bullet points */
ol.wp-block-list ul li {
    list-style-type: disc !important;
}
/* Emphasizing bold and italic text */
.wp-block-list strong {
    color: #333;
}

.wp-block-list em {
    color: #555;
}
.betterdocs-body:last-of-type {
    padding: 0px 15px 0px 15px !important;
}
.betterdocs-search-form-wrapper {
    background-color: #212132 !important;
}
.betterdocs-articles-list li a {
  color: #00aced !important;
}
/*Contact Form*/
.elementor-message {
    font-size: 1em;
    line-height: 1;
    margin: 10px 0;
    background: #000000;
    padding: 15px;
    color: #fff;
    font-weight: bold;
    border-radius: 25px;
}

.pix-header-mobile .navbar-toggler.hamburger {
    background-color: #fff;
    width: 30px;
}

/* General form styling */
.domain-search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px; /* Adjust form width */
    margin: 20px auto; /* Center form */
}

/* Input field styling */
.domain-input {
    flex: 1; /* Takes up available space */
    padding: 11px 15px;
    font-size: 18px;
    border: 1px solid #bbbbbb;
    border-right: none; /* Remove right border to merge with the button */
    border-radius: 20px 0 0 20px; /* Rounded left corners */
    outline: none;
}
.domain-input::placeholder {
        color: #aaaaaa; /* Light gray placeholder text */
        opacity: 1; /* Ensures full visibility */
    }
.domain-input:focus::placeholder {
    color: transparent;
}    

/* Search button styling */
.domain-search-submit {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #22c55e !important;
    color: #ffffff;
    border: 0px solid #22c55e !important;
    border-radius: 0 20px 20px 0 !important; /* Rounded right corners */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
.domain-search-submit:hover {
    background-color: #005bb5;
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .domain-search-form {
        flex-direction: column;
        max-width: 100%;
    }
    .domain-input, .domain-search-submit {
        border-radius: 20px; /* Fully rounded corners */
        border: 2px solid #0073e6;
    }
    .domain-input {
        border-right: 2px solid #0073e6;
        margin-bottom: 10px;
    }
}