﻿
.search {
    position: absolute;
    width: 50%;
    min-height: var(--slide-height);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color:#73b94e;
    color:white;
    z-index: 100;
}
    
    .search .back {
        font-weight: bold;
        font-size: 2em;
    }
    .search.pc {
        width: var(--slide-width);
        transform: unset;
        top: 50px;
        left: calc(0px - var(--slide-width));
    }
    .search-title {
        color: var(--book-font-color);
        background-color: #328d1c;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 8px;
    }
.search .catalog-zone {
    background-color:transparent !important;
}
.search .uil-times, .search .schbtn {
    cursor: pointer;
}

.search .uil-times:hover, .search .schbtn:hover {
    color: #ffd800;
}
.keyword-zone {
    width: 100%;
    text-align: center;
    margin:6px 0;
    padding: 3px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-tbx{
    border:unset;
    outline:none;
    width:100%;
    padding:5px 8px;
    border-radius:5px;
}
.search .schbtn {
    color: #ccc;
    margin-top: -3px;
    margin-left: -30px;
}
.searchA {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 0.75em;
    padding-right: 2px;
    font-weight:bold;
}
@media (max-width:700px){
    .search {
        height:100vh;
        width:100%;
        /*opacity:.9;*/
    }
    .searchA{
        padding-bottom:2px;
    }
    .search-tbx {
        width: 85%;
    }
    .search .catalog-zone {
        max-height: 80vh !important;
        padding: 5px 20px;
    }
}
