body, button, input, textarea {
	font-family: inherit;
	font-variation-settings: "DOTS" 1;
}
.button-yellow {
    background-color: var(--e-global-color-e74edaa);
}
.button-yellow a {
    color: black !important;
}
.button-daroo {
    background-color: #382352;
    margin: 0 4px !important;
}
.button-daroo a {
	color: white !important;
}

/* Gravity forms */
.gfield_visibility_hidden {
    display: none;
}
input.gform_button {
    all: unset;
    color: white;
    background-color: var(--e-global-color-f53c820);
    border: 1px solid #fff;
    padding: 4px 24px;
	cursor: pointer;
}
input.gform_button:hover {
	color: var(--e-global-color-f53c820);
	background-color: white;
	border-color: var(--e-global-color-f53c820);
}

/* Elementor */
.elementor-counter-number-wrapper {
	align-items: center;
}
.elementor-counter-number-suffix {
	font-size: 70%;
}

/* Table */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
th {
    padding: 18px 20px;
    text-align: right;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    color: #2c2c28;
    text-transform: uppercase;
    background-color: #f7f7f7;
    border-bottom: 2px solid #d0d0c0;
}
td {
    padding: 14px 20px;
    font-size: 0.9rem;
    color: #3a3a35;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e0;
    transition: all 0.2s ease;
}
tbody tr:nth-child(even) td {
    background-color: #f7f7f7;
}
tbody tr:hover td {
    background-color: #f1f1f1;
    transform: scale(1.002);
    box-shadow: inset 0 1px 0 #ffffff;
}
tbody tr:last-child td {
    border-bottom: none;
}
table a {
    color: #5a5a50;
    text-decoration: none;
    border-bottom: 1px dashed #c0c0b0;
    transition: color 0.2s;
}
table a:hover {
    color: #8a8a78;
    border-bottom-color: #a0a090;
}

/* Comment */
textarea#comment {
    border: 1px solid #ddd;
    width: 100%;
}
input#submit {
    all: unset;
    color: white;
    background-color: var(--e-global-color-accent);
    padding: 12px 32px;
    cursor: pointer;
    transition: .3s;
}
input#submit:hover {
    color: #333;
    background-color: var(--e-global-color-primary);
}
ul.comment-list, ul.children {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
li.comment {
    border: 1px solid #eee;
    padding: 16px;
}
footer.comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
a.comment-reply-link {
    text-decoration: underline;
    text-underline-offset: 8px;
    font-size: 12px;
}
#commentform {
    display: flex;
    flex-direction: column;
}
#commentform p:not(.form-submit) input {
    border: 1px solid #ddd;
    padding: 10px 12px;
}
#commentform p {
    position: relative;
}
#commentform label {
    position: absolute;
    top: -12px;
    right: 12px;
    background-color: white;
    padding: 0 12px;
}
#commentform p:not(.form-submit) :is(input, textarea) {
    padding: 16px;
}
p.comment-form-author {
    display: flex;
    flex-direction: column;
    order: 0;
    margin: 0;
}
p.comment-form-comment {
    order: 1;
}
p.form-submit {
    order: 2;
}
p.comment-form-aios-antibot-keys {
    order: 3;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.button-daroo {
		margin: 4px 0 !important;
	}
}
@media (max-width: 768px) {
    th, td {
        padding: 12px 14px;
        font-size: 0.8rem;
    }
}