* {
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: #fff;
}

#app {
    width: 100%;
    height: 90vh;
    display: flex;
    box-sizing: border-box;
}

.compact {
    justify-content: center;
    align-items: center;
}

.full {
    flex-direction: column;
}

.search-header {
    width: 100%;
    box-sizing: border-box;
}

.full .search-header {
    padding: 10px 0px 10px 16px;
    box-shadow: 0px 0px 13px -2px rgb(0 0 0 / 10%);
}

.full .search-box {
    margin: 0px;
}

.search-box {
    width: 50%;
    position: relative;
    margin: 0px auto;
}

.full .search-box input {
    box-shadow: none;
}

.search-box input {
    width: 100%;
    height: 50px;
    border: 1px solid #eee;
    border-radius: 5px;
    line-height: 50px;
    font-size: 18px;
    color: #333;
    padding-right: 40px;
    padding-left: 40px;
    box-sizing: border-box;
    box-shadow: 2px 1px 5px 0px rgb(0 0 0 / 10%);
    outline: none;
}

.search-ico {
    position: absolute;
    right: 9px;
    top: 16px;
}

.google-ico {
    position: absolute;
    left: 9px;
    top: 18px;
}

.google-ico img {
    width: 15px;
}

.search-ico img {
    width: 18px;
}

.search-result {
    margin-top: 20px;
    width: 60%;
    padding-left: 16px;
}

.result {
    margin: 20px 0px;
}

.result .title {
    word-break: break-word;
}

.result .link {
    font-size: .9rem;
    margin-bottom: 5px;
    cursor: pointer;
    color: blue;

}

.result .link {
    text-decoration: none;
}

.result .snippet {
    font-size: .8rem;
    margin-bottom: 5px;
}

.search-info {
    font-size: .7rem;
    color: gray;
    margin-top: 15px;
}

.breadcrumb {
    font-size: .8rem;
    color: gray;
    margin-top: 7px;
}

.banner-highlight {
    line-height: 20px;
    color: #625f5f;
    font-weight: 500;
}


@media only screen and (max-width: 600px) {
    .search-result {
        width: 100%;
        padding: 0px 16px;
        box-sizing: border-box;
    }

    .search-box {
        width: 100%;
    }

    .search-header {
        padding-right: 16px !important;
    }

    .compact .search-header {
        padding-left: 16px !important;
    }
}



/* The Modal (background) */
.modal {
        display: none;
            position: fixed;
            z-index: 1;
            padding-top: 20px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0, 0, 0);
            background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */
#modal-content {
        background-color: #fefefe;
            margin: auto;
            padding: 20px;
            border: 1px solid #888;
            width: 90%;
            overflow: auto;
            height: 90vh;
            position: relative;
}

/* The Close Button */
#close {
        color: #fff;
            float: right;
            font-size: 34px;
            font-weight: bold;
            position: fixed;
            right: 38px;
            padding: 10px 20px;
            background-color: red;
}

#close:hover,
#close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#wb-img {
    width: 100%;
}