﻿.results {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    width: 100%;
    box-shadow: 0px 12px 34px 0px rgba(0, 0, 0, 0.21);
    transition: all 0.2s ease;
    z-index: 1000;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: white;
    font-family: 'NORLYSText', sans-serif;
}

.search-result {
    text-decoration: none;
    color: rgba(0,0,0, 0.8);
    padding: 18px 24px;
    border-bottom: 1px solid #F5F6F8;
    cursor: pointer;
    font-size: 16px;
}

.search-result.selected {
    background-color: #F5F6F8;
}

.hidden {
    display: none;
}

.placeholder {
    position: absolute;
    top: calc(50% - 13px);
    left: 24px;
    font-family: "NORLYSText";
    color: #838383;
    opacity: 1;
    font-size: 18px;
    pointer-events: none;
    transform: translate3d(0,0,0) scale(1);
    transition: all .2s linear;
    transform-origin: left bottom;
}

.placeholder-top {
    font-size: 12px;
}
