.search-result {
    height: 380px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 90%;
    margin-bottom: 3rem;
    position: relative;
    text-align: left;
}

.search-result:hover h3 {
    color: #F14400;
}

.search-result p {
    margin-top: 0;
    margin-bottom: 0;
}

.search-result__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, .7);
}

.search-result__title h3 {
    font-family: 'nunitomedium', sans-serif;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    font-size: 2rem;
    margin: 0;
    transition: color .3s ease-in-out;
}

.search-result__options {
    margin-top: 3rem;
    text-align: left;
}

.search-result__options .btn {
    width: 100%;
    background-color: white;
    color: inherit;
    padding-bottom: 1.2rem;
    margin-bottom: 3rem;
    transition: .3s ease-in-out;
    transition-property: background-color, color;
}

.search-result__options .btn.active {
    background-color: #F14400;
    color: white;
}

@media (min-width: 768px) {
    .search-result__options .btn {
        width: auto;
    }

    .search-result__options .btn:not(:last-child) {
        margin-right: 2rem;
    }
}

.search-result__options .btn:hover,
.search-result__options .btn:focus {
    background-color: #F14400;
    color: white;
    cursor: pointer;
}

.search-result__options .btn:hover .btn-copy,
.search-result__options .btn:focus .btn-copy {
    border-bottom: 2px solid white;
}

/*
* Search form
*/

.header__search-button {
    cursor: pointer;
}

.header__search {
    color: #F14400;
    cursor: pointer;
    margin-left: 1rem;

}

.header--desktop .header__search {
    font-size: 1.8rem;
}

.header__search-form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .8);
    text-align: center;
    z-index: 1000;
    overflow-y: auto;
}

.header__search-wrap {
    position: relative;
    margin-top: 8rem;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

@media (min-width: 1024px) {

    .header__search-wrap {
        margin-top: 14rem;
        max-width: 1300px;
    }
}

.header__search-input-wrap {
    position: relative;
}

.header__search-input {
    background-color: transparent;
    border: 0;
    border-bottom: 3px solid white;
    color: white;
    text-transform: uppercase;
    font-size: 1.4rem;
    padding: .5rem 0;
    width: 100%;
}

@media (min-width: 375px) {
    .header__search-input {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) {
    .header__search-input {
        font-size: 2.6rem;
    }
}

@media (min-width: 992px) {
    .header__search-input {
        font-size: 3.6rem;
    }
}

/* Chrome/Opera/Safari */
.header__search-input::-webkit-input-placeholder {
    color: white;
}

/* Firefox 19+ */
.header__search-input::-moz-placeholder {
    color: white;
}

/* Firefox 18- */
.header__search-input:-moz-placeholder {
    color: white;
}

/* IE 10+ */
.header__search-input:-ms-input-placeholder {
    color: white;
}

.header__search-hide:focus,
.header__search-input:focus {
    outline: none;
}

.header__search-hide {
    position: absolute;
    bottom: 0.5rem;
    right: 0;
    padding: 0;
    color: #F14400;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    font-size: 2.6rem;
    line-height: 0;
}

@media (min-width: 375px) {
    .header__search-hide {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .header__search-hide {
        bottom: 0.9rem;
    }
}

@media (min-width: 992px) {
    .header__search-hide {
        bottom: 1.4rem;
        right: 0;
        padding: 0;
    }
}

.header__search-hide i {
    transition: transform 0.3s ease-in-out;
}

.header__search-hide:hover i {
    transform: rotateZ(180deg);
}
