/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.search-bar-container {
    border: 2px solid #4A8AF3;
    border-radius: 28px;
    background-color: #EEE9FF;
    padding: 0 8px 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
}

.search-bar-input {
    background-color: transparent;
    padding: 16px 0;
    border: none;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    color: #2A2243;
    font-family: "Urbanist-Regular";
    outline: none;
}

.search-bar-button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.search-bar-button:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

.search-bar-button:active {
    -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
            transform: scale(0.95);
}

.search-bar-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.search-bar-datafetch.active {
    opacity: 1;
    pointer-events: auto;
}

.search-bar__result {
    margin-bottom: 8px;
    padding: 8px 4px;
    border-radius: 8px;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

.search-bar__result:hover,
.search-bar__result.highlight {
    background-color: #F1F6FE;
}

.search-bar__result--link {
    color: #4A8AF3;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}