/* Minification failed. Returning unminified contents.
(145,5): run-time error CSS1052: Namespace used but not declared in a @namespace statement: 'html'
 */
@media(max-width: 767px) {
    .autocomplete-no-suggestion {
        font-size: 20px !important;
        text-align: center;
        position: fixed;
        left: 50%;
        top: 50% !important;
    }

    .search-box .search-container input {
        font-size: 2.5rem !important;
    }

    .autocomplete-suggestions {
        margin-left: -35px;
    }

    .autocomplete-suggestions .autocomplete-group {
        margin-bottom: 10px;
        margin-left: 0;
    }

    .autocomplete-suggestions .autocomplete-suggestion {
        width: 90% !important;
        margin: 0;
    }

    .autocomplete-suggestions .autocomplete-group {
        margin-bottom: 10px;
        margin-left: 0;
    }
}

.autocomplete-no-suggestion {
    font-size: 40px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.search-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999999;
    background-color: white;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    overflow-y: scroll;
    overflow-x: hidden;
}
.autocomplete-suggestions .autocomplete-group {
    font-size: 28px;
    margin-left: 20px;
    clear: both;
    width: 100%;
    font-weight: 900;
    line-height: 1;
}
.autocomplete-suggestions {
    color: black;
    padding: 0;
    max-height: initial !important;
    width: 100% !important;
    margin-left: -45px;
}
.search-box.collapsed {
    transform: translate(0, 0);
}
.search-box .search-close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: black;
    font-size: 25px;
}
.search-box .search-container {
    margin-top: 20px;
    padding: 20px 50px;
}
.autocomplete-suggestions .autocomplete-suggestion img {
    max-width: 100%;
    width: 100%;
    /*height:250px;*/
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
}
.search-box .search-container input {
    background-color: transparent;
    border: none;
    color: black;
    font-weight: 600;
    font-size: 6.0rem;
    outline: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 100%;
    margin: 0px;
}
.search-box .search-container input:focus {
     border-color: black;
}
.autocomplete-suggestions .autocomplete-suggestion {
    overflow: hidden;
    margin: 20px 7.5px;
    cursor: pointer;
    width: calc(100% / 6 - 20px);
    float: left;
    min-height: 250px;
}
svg:not(:root) {
    overflow: hidden;
}
.generalLoader {
    -webkit-animation: rotateGeneralLoader 2s linear infinite;
    animation: rotateGeneralLoader 2s linear infinite;
    height: 50px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
    width: 50px;
    z-index: 4;
}
.generalLoader-path {
    stroke-dasharray: 1,500;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #3498db;
}
html|* > svg {
    transform-origin: 50% 50% 0px;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
@keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px;
    }
}
@keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}
@keyframes rotateGeneralLoader {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.hidden {
    display: none !important;
}

#SearchResult .autocomplete-suggestion img{
    height:180px;
    object-fit:cover;
}

