﻿#RecaptchaBox > div,
#RecaptchaBox > div > div {
    margin: 0 auto;
}

.g-recaptcha div {
    margin: 0 auto;
}

.search-result {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.search-result:hover {
    background: #f7f7f7;
}

.search-result:first-of-type {
    border-top: 1px solid #eee;
}

.search-result {
    position: relative;
    transition: background 0.2s;
}

.search-result:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    transition: height 0s ease,background .5s ease;
}

.search-result:hover:before {
    height: 100%;
    background: #f25d18;
    transition: height .5s ease;
}

.search-result:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 0;
    background: #f25d18;
    transition: height .5s ease;
}

.search-result:hover:after {
    height: 100%;
    background: transparent;
    transition: all 0s ease;
}

.search-title, .search-link, .search-correction {
    color: #F37021;
    margin-bottom: 0;
}

.search-content {
    margin-bottom: 0;
}

.search-title {
    font-size: 1.2rem;
}

.search-link {
    font-size: 0.8rem;
}

