input {
    width: 100%
}
div.notfound{
    text-align: left;
    font-style: italic;
    font-size: 18px;
}
div.section-block{
    margin: 2rem 0px 1rem;
}
.options-field {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.hide2{
    display: none;
}
.options-field .col{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
#productResult .search-box {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.options-field .col fieldset {
    margin: 5px;
    border: 1px solid #cdcdcd;
}

.options-field fieldset .select-field,
.options-field fieldset .select-field:focus,
.options-field fieldset .select-field:hover {
    width: 100%;
    border: 0;
    border-radius: 0;
    height: 120px;
    outline: none;
    color: #3f3f3f;
    overflow-y: auto;
}

.options-field fieldset .select-field option,
.options-field fieldset .select-field:focus option:checked,
.options-field fieldset .select-field:hover option:checked {
    color: #3f3f3f !important;
}


.options-field fieldset .select-field option {
    position: relative;
    color: #3f3f3f;
    cursor: pointer;
    padding: 4px 5px;
    margin: 1px 0px;
}

.options-field fieldset label {
    display: block;
    font-size: 17px;
    font-weight: 500;
    padding: 5px;
    background: #f9f9f9;
}

.options-field fieldset .select-field option:hover {
    background-color: #f1f1f1 !important;
    color: rgb(16, 16, 16) !important;
}

.options-field fieldset .select-field option:focus,
.options-field fieldset .select-field option:active,
.options-field fieldset .select-field option:checked {
    background: linear-gradient(#FFC894, #FFC894);
    background-color: #FFC894 !important;
    outline: none;
    padding-left: 25px;
}

.options-field fieldset .select-field option:checked:before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    background: url(done.png);
    left: 2px;
    top: 50%;
    z-index: 99;
    border-radius: 50%;
    transform: translateY(-50%);
}

.options-field fieldset .select-field option:checked {
    background-color: red !important;
    color: rgb(16, 16, 16) !important;
}

/* width */
.options-field fieldset .select-field::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.options-field fieldset .select-field::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.options-field fieldset .select-field::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.options-field fieldset .select-field::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.more-field{
    text-align: right;
    margin-bottom: 1em;
}
.more-field button {
    cursor: pointer;
    outline: none;
    background: white;
    border: 1px solid;
    padding: 5px 15px;
    transition: all .2s ease-in-out;
}
.more-field button:hover {
    background: #3f3f3f;
    color: white;
}
#searchForm .form-box {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}
#searchForm .form-box input {
    padding: 5px 10px;
    border: 1px solid #888888;
    border-radius: 0px;
    outline: none;
}
#searchForm .form-box input:focus {
    border: 1px solid orange;
    color: black;
    border-radius: 0px;
}
#searchForm .form-box button {
    padding: 5px 10px;
    border: 1px solid #888888;
    border-radius: 0px;
    background: white;
    outline: none;
    transition: all .1s ease;
    cursor: pointer;
}
#searchForm .form-box button:focus {
    border: 1px solid #FF9800;
    border-radius: 0px;
}
#searchForm .form-box button:hover {
    border: 1px solid #FF9800;
    border-radius: 0px;
    background: #FF9800;
}

.search-list{
    margin: 2rem 0px 1rem;
    font-size: 16px;
    font-style: italic;
}

#productResult{
    background: #f1f1f1;
    padding: 5px;
}
.search-box{
    width: 100%;
    float: left;
    transform: scale(0);
    transition: all 0.5s ease;
}
.search-box.animate{
    transform: scale(1);
}
.search-box .box{
    background: white;
    margin: 5px;
}

.search-box .box a{
    display: block;
    position: relative;
}
.search-box .box a .magnify-layer{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #3f3f3f;
    opacity: 0;
    transition: all .2s ease-in;
}

.search-box .box a .magnify-layer:hover {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.search-box .box a .magnify-layer:after {
    content: '';
    background: url(magnify-glass.png);
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-position: center;
    background-size: cover;
    z-index: 99999;
    transform: translate(-50%, -50%);
}
/* .search-box .box a:nth-child(2){
    margin-left: auto;
} */
.search-box .box a img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.search-box .box .name {
   margin: 5px;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
   text-align: center;
}
.search-box .box .buttons{
    padding: 5px 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box .box .buttons a{
    padding: 5px;
    background: #ff9900;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    transition: all .2s ease-in-out;
}
.search-box .box .buttons a:hover {
    background: #3f3f3f;
}

@media only screen and (max-width: 992px) {
    /* .search-box {
        width: 33.333333%;
        float: left;
    } */
    .section-block{
        padding: 0px 5px;
    }
    .options-field .col{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    #productResult .search-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    #searchForm .form-box {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .options-field .col,
    #productResult .search-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media only screen and (max-width: 480px) {
    .options-field .col,
    #productResult .search-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}