:root {
    --efor-grey: #c1c1c1;
    --efor-yellow: #c9a778; /* b48d57  */
    --efor-green: #5a6b61;
}

body {
    font-family: 'Roboto', sans-serif;
}

.fs-7 {
    font-size: 0.9rem !important;
}

.efor-a-yellow {
    color: var(--efor-yellow) !important;
}

.efor-a:hover {
    color: var(--efor-yellow) !important;
}

.efor-a:active {
    background: none;
}

.efor-a span {
    position: relative;
    display: inline-block;
}

.efor-a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: currentColor;
    transition: width 0.6s ease;
}

.efor-a:hover span::after {
    width: 100%;
}

.efor-btn {
    background-color: var(--efor-green) !important;
    color: white !important;
}

.efor-btn:hover {
    background-color: var(--efor-yellow) !important;
    color: black !important;
}

.spinner-border.slow-spin {
    animation-duration: 1.5s;
}

.accordion-button:hover::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b48d57'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}