/* @import "modules/search-overlay"; */

.search-overlay {
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 110;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .96);
    visibility: hidden;
    opacity: 0;
    transform: scale(1.09);
    transition: opacity .3s, transform .3s, visibility .3s;
    box-sizing: border-box;
}
  
.search-overlay__top {
    background-color: rgba(0, 0, 0, .12);
    margin-top: 100px;
}

.search-overlay__icon {
    margin-right: 10px;
    font-size: 1.8rem;
    color: darkOrange;
}

.search-overlay--active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.search-overlay__section-title {
    margin: 30px 0 1px 0;
    font-weight: 400;
    color: orange;
    font-size: 2rem;
    padding: 15px 0;
    border-bottom: 1px solid #CCC;
}

.search-overlay__close {
    position: inherit;
    margin-right: 16px;
    float: right;
    font-size: 2.1rem;
    cursor: pointer;
    color: orange;
    line-height: 1.7;
}

.search-overlay__close:hover {
    opacity: 1;
}


.search-term {
    width: 75%;
    box-sizing: border-box;
    border: none;
    padding: 15px 0;
    margin: 0;
    background-color: transparent;
    font-size: 1.2rem;
    font-weight: 400;
    outline: none;
    color: orange;
}

.body-no-scroll {
    overflow: hidden;
}

.tour-card__list-item {
    display: inline-block;
    list-style: none;
}

.tour-card:hover .professor-card__name {
    background-color: rgba(213, 62, 32, 0.85);
}

.tour-card__name {
    font-weight: 300;
    font-size: .9rem;
    position: absolute;
    bottom: 0;
    color: #FFF;
    left: 0;
    right: 0;
    padding: 3px 10px;
    background-color: rgba(236, 68, 34, 0.85);
}
.tour-card__image {
    display: block;
    width: 110px;
    height: 80px;
}

