/* Global Styles */
.text-line--2 {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.bricks-posts-nothing-found {
    text-align: center;
}

.brx-popup-content:has(.brx-loading-animation) {
    background-color: transparent;
}

/* Form Reset */
::-webkit-input-placeholder {
    color: #9CA3AF;
    opacity: 1;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
    color: #9CA3AF;
    opacity: 1;
}

label {
    margin-bottom: 0 !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #4B5563;
}

label span {
	color: #EF4444;
}

input,
textarea,
select {
    padding: 11px 0;
	border-width: 0 0 1px;
	border-style: solid;
    border-color: #6B7280;
    border-radius: 0;
    outline: none;
    line-height: 1.6;
    color: var(--bricks-color-abckyw);
    caret-color: var(--bricks-color-abckyw);
    word-break: normal;
    background-color: transparent;
    transition: 0.3s;
}

input:focus,
textarea:focus {
	border-color: var(--bricks-color-hbnbvx);
}

textarea {
	resize: none;
}

input[type="radio"],
input[type="checkbox"] {
	display: inline-block;
	width: 15px;
	min-width: 15px;
	height: 15px;
	min-height: 15px;
	padding: 0;
	border: 1px solid #4B5563;
	line-height: normal;
	background: #fff center/9px 9px no-repeat;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-sizing: border-box;
	cursor: pointer;
	transition: .3s;
}

input[type="checkbox"] {
	border-radius: 0;
}

input[type="checkbox"]:checked {
	border-color: #C8A75E;
	background-color: #C8A75E;
	background-image: url(../images/icon-check-light.svg);
}

input[type="checkbox"]:hover,
input[type="checkbox"]:checked {
	border-color: #C8A75E;
}

input[type="radio"] {
	border-radius: 50px;
	transition: border-color .3s;
}

input[type="radio"]:checked {
	border-width: 6px;
	border-color: #C8A75E;
}