
/* WPForms fixes */
/* Initial field looks */

/* 1.0. Homepage Posts - limit title to max 3 lines */
.ue_post_blocks_title {
	color: #000;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}


.wpforms-container input[type=date],
.wpforms-container input[type=datetime],
.wpforms-container input[type=datetime-local],
.wpforms-container input[type=email],
.wpforms-container input[type=month],
.wpforms-container input[type=number],
.wpforms-container input[type=password],
.wpforms-container input[type=range],
.wpforms-container input[type=search],
.wpforms-container input[type=tel],
.wpforms-container input[type=text],
.wpforms-container input[type=time],
.wpforms-container input[type=url],
.wpforms-container input[type=week],
.wpforms-container select,
.wpforms-container textarea {
    background: #fff;
    border-width: 0 0 1px 0;
    color: var(--ast-global-color-2);
    opacity: 0.5;
}
/* On focus */
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus {
    outline: none;
    opacity: 1;
    border-color: var(--ast-global-color-0);
}
/* Don't allow resizing the Message box */
.wpforms-container textarea {
    resize: none;
}
/* Message box fixed height */
.wpforms-container .wpforms-field-textarea textarea.wpforms-field-medium {
    height: 136px;
}
/* Button size & font size */
.wpforms-container button {
    padding: 15px 34px;
    font-size: 15px;
}
/* WPForms done */
/* Footer 2 big columns on sides and 1 small one in the middle */
.ast-builder-grid-row-3-equal .ast-builder-grid-row {
    grid-template-columns: 3fr 1fr 3fr;
}

#toc-container {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    width: 100%;
}

#toc-list li {
    list-style-type: disc;
    margin: 5px 0;
}

#toc-list li.toc-level-1 {
    font-weight: bold;
}

#toc-list li.toc-level-2 {
    margin-left: 15px;
}

#toc-list li a {
    color: green;
    text-decoration: none;
    transition: color 0.3s;
}

#toc-list li a.active {
    color: darkgreen;
}

#toc-list li a::before {
    content: "• ";
    color: green;
}

#toc-list li a.active::before {
    content: "• ";
    color: darkgreen;
}

/* Hide ToC on devices smaller than 1024px (tablets and mobiles) */


@media only screen and (max-width: 768px) and (min-width: 0) {
	.lwptoc { display: none; }
}