a,
html {
    text-decoration: none;
    color: inherit;
    border: none
}

a:hover {
    text-decoration: none;
}

.overlay3 {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .9);
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s
}

header {
    min-height: 150px;
    z-index: 999;
    position: relative;
}

.topheight-30 {
    max-height: 30px;
}

.menu.absolute {
    position: absolute;
}

.home-btn {
    background-color: unset;
    color: red;
    border: 2px solid red;
    border-radius: 10px;
    font-size: 12px;
    padding: 6px 9px;
}

.home-btn:hover {
    background-color: red;
    color: white;
}

.search-bar-wrapper {
    margin-top: 20px
}

header .search-bar {
    justify-content: space-around;
    align-items: center;
}

header .search-input-icon {
    color: red;
    font-size: 16px;
}

header .search-input {
    display: inline-block;
    margin-left: 10px;
    width: unset;
    background-color: #f3f3f3;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .15);
    border: 0;
    font-size: 14px;
    height: unset !important;
}


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;
}

select.minimal {
-webkit-appearance: none;
-moz-appearance: none;
}

.categories-menu-wrapper {
    color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    margin-top: 28px;
    font-size: 14px;
}

.categories-menu-wrapper i {
    font-size: 17px;
}

.categories-menu-wrapper:hover .categories-dropdown {
    height: 378px;
    opacity: 1;
    visibility: visible;
    overflow:scroll;
    width: 230px;
}

.categories-dropdown {
    display: block;
    position: absolute;
    top: 30px;
    right: -38px;
    background: #fff;
    border: 1px solid #f3f3f3;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: 0;

    transition: 0.15s;
}

.categories-dropdown:after,
.categories-dropdown:before {
    bottom: 100%;
    left: 14%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.categories-dropdown:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 9px;
    margin-left: -9px;
}

.categories-dropdown:before {
    border-color: rgba(243, 243, 243, 0);
    border-bottom-color: #cccccc;
    border-width: 10px;
    margin-left: -10px;
}

.categories-dropdown ul {
    list-style-type: none;
    padding: 0px;
    margin-bottom: 0px;
}

.categories-dropdown ul li {
    padding: 5px 15px;
    border-bottom: 1px solid #f3f3f3;
    color: #000;
    font-size: 14px;
    cursor: pointer;
}

.categories-dropdown ul li:hover {
    color: red;
}


/*Sticky Menu*/

.fixed-menu {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
    transition: ease-in 0.15s;
    /*padding-top: 10px;*/
    padding-bottom: 18px;
}

.fixed-menu .top-bar {
    display: none;
}

.fixed-menu .divider {
    display: none;
}


@media only screen and (max-width: 1199px) {
    header .search-input {
        width: 175px;
    }

}



@media only screen and (max-width: 991px) {
    .menu.absolute {
        position: relative;
    }

    header {
        min-height: unset;
    }

    header .search-input {
        width: 230px;
    }


}


@media only screen and (max-width: 560px) {
header .search-input {
    width: 125px;
}
}
