﻿.ui-autocomplete {
    max-height: 600px;
    overflow-y: auto; /* prevent horizontal scrollbar */
    overflow-x: hidden; /* add padding to account for vertical scrollbar */
    z-index: 2000 !important;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: forestgreen;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

    #myBtn:hover {
        background-color: darkseagreen;
    }

a:link {
    color: #2196f3;
}

#cat {
    width: 20%;
    height: 35px;
    background-color: #f8f9fa;
    border-width: thin;
    border: none;
}

    #cat option {
        width: 200px;
    }

select {
    /* styling */
    background-color: white;
    border: thin solid blue;
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 3.5em 0.5em 1em;
    /* reset */
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}


    /* arrows */
    select.minimal {
        background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
        background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
        background-size: 5px 5px, 5px 5px, 1px 1.5em;
        background-repeat: no-repeat;
    }

        select.minimal:focus {
            background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #ccc, #ccc);
            background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
            background-size: 5px 5px, 5px 5px, 1px 1.5em;
            background-repeat: no-repeat;
            border-color: green;
            outline: 0;
        }


    select:-moz-focusring {
        color: transparent;
        text-shadow: 0 0 0 #000;
    }


/*Cookie Consent Begin*/
#cookieConsent {
    background-color: rgba(20,20,20,0.8);
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: "Trebuchet MS",Helvetica,sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}

    #cookieConsent a {
        color: #4B8EE7;
        text-decoration: none;
    }

#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}

    #closeCookieConsent:hover {
        color: #FFF;
    }

#cookieConsent a.cookieConsentOK {
    background-color: #F1D600;
    color: #000;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;
}

    #cookieConsent a.cookieConsentOK:hover {
        background-color: #E0C91F;
    }
/*Cookie Consent End*/


/*I added below CSS for Images Slider*/

.item-slider {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}

.bx-wrapper img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
}

.bx-wrapper .bx-prev {
    background: none !important;
}

.bx-wrapper .bx-next {
    background: none !important;
}

.bx-wrapper:hover .bx-controls-direction a:after {
    opacity: 1;
}

#bx-pager {
    text-align: center;
}

.thumb-item-link {
    border-bottom: 4px solid #ccc;
    display: inline-block;
    float: none;
    height: 70px;
    margin: 0 2px;
    outline: medium none;
    overflow: hidden;
    position: relative;
    width: 100px;
}

    .thumb-item-link img {
        width: 100%;
        max-width: 100%;
        border-radius: 3px;
        opacity: 0.7;
        -webkit-transition: opacity 0.15s ease-in-out 0s;
        -moz-transition: opacity 0.15s ease-in-out 0s;
        -o-transition: opacity 0.15s ease-in-out 0s;
        transition: opacity 0.15s ease-in-out 0s;
    }

    .thumb-item-link:focus {
        box-shadow: 0 0 2px #369;
        outline: none;
    }

    .thumb-item-link.active {
        border-bottom: 4px solid #369;
    }

        .thumb-item-link.active img {
            opacity: 1;
        }

    .thumb-item-link:hover img {
        opacity: 1;
    }

@media (max-width: 640px) {
    .thumb-item-link {
        height: 48px;
        width: 64px;
    }

    .item-slider .bx-wrapper {
        margin-bottom: 10px;
    }
}

.text-danger {
  color: #a94442;
}

