/* Search page */

/* Input */
.navbar-search-text {
    /* overflow: hidden; */
    opacity: 0;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    /* background: green; */
}
.navbar-search-text .form-group {
    margin-bottom: 0;
}
.red .navbar-search-text .form-text {
    border-top-color: var(--red-color);
}
.light-red .navbar-search-text .form-text {
    border-top-color: var(--light-red);
}
.blue .navbar-search-text .form-text {
    border-top-color: var(--blue-color);
}
.light-blue .navbar-search-text .form-text {
    border-top-color: var(--light-blue);
}
.yellow .navbar-search-text .form-text {
    border-top-color: var(--yellow-color);
}
.light-gray .navbar-search-text .form-text {
    border-top-color: var(--light-gray);
}
.dark-gray .navbar-search-text .form-text {
    border-top-color: var(--dark-gray);
}
.navbar-search-text .form-text {
    margin-top: 0;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--red-color);
    border-radius: unset;
    color: var(--red-color);
    background: var(--light-gray) !important;
}
.navbar-search {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 1rem;
    position: absolute;
    /* background: #fff; */
    right: 0;
    width: auto;
}
.navbar-search img {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
    cursor: pointer;
    z-index: 100;
}
.navbar-search.open {
    width: 15rem;
}
.navbar-search .navbar-search-text {
    display: none;
}
.navbar-search.open .navbar-search-text{
    display: block;
    opacity: 1;
}


/* Page */
.search-title {
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'EBGaramond';
    color: var(--dark-gray);
    margin-bottom: 2rem;
    margin-top: 3rem;
}
.search-grid {
    margin: 2rem 0;
}
.search-result {
    color: var(--dark-gray);
}
.search-result-title {
    font-weight: bold;
    font-family: 'EBGaramond';
    margin-bottom: 1rem;
}
.search-result-description {
    text-align: justify;
    width: 80%;
    font-size: 0.8rem;
}
.search-no-result {
    margin: 2rem 0;
}
.search-no-result-label {
    font-size: 0.7rem;
    color: var(--dark-gray);
}
.search-no-result-button a,
.views-field-title-1 a {
    text-transform: uppercase;
    display: inline-block;
    padding: 0.3rem 1.8rem;
    font-size: 0.7rem; 
    background: transparent;
    color: var(--dark-gray);
    margin-top: 3.5rem;
    border: 2px solid var(--dark-gray);
    text-decoration: none;
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    margin-top: 3.5rem;
}
.views-field-title-1 a {
    margin-top: 1rem;
    margin-bottom: 4rem;
}
.search-no-result-button a:hover,
.views-field-title-1 a:hover,
.search-no-result-button a:focus,
.views-field-title-1 a:focus {
    color: #ffffff;
    background: var(--dark-gray);
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 3px 1px -2px rgba(0,0,0,0.12);
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}


@media (max-width: 992px) { 
	.navbar-search img{ 
    width: 1.3rem;
    height: 1.3rem;
    object-fit: contain;
	}
	.navbar-search {
        width: 14rem;
        justify-content: flex-end;
    }
}