.input-search {
    border-top-left-radius: 17px;
    border-bottom-left-radius: 17px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.5);
    color: #545E75;
    font-size: 16px;
    font-weight: 300;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.input-button-search {
    background-color: #17407E;
    border-top-right-radius: 17px;
    border-bottom-right-radius: 17px;
    border: none;
    -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.5);
    color: #fff;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* .search-box:hover{
    width: 100%;
}

.search-box:hover > .search-text{
    width: 96%;
} */

.search-box-expand {
    width: 100% !important;
}

.search-text-expand {
    width: 96% !important;
}

.search-box {
    /* -webkit-transition: width 0.8s; */
    /* -moz-transition: width 0.8s;
    -o-transition: width 0.8s; */
    /* transition: width 0.8s; */
    top: 0;
    left: 0;
    background-color: white;
    width: 100%;
    border-radius: 40px;
    padding: 10px;
    /* box-sizing: content-box; */
    display: inline-flex;
}

.search-button {
    color: white !important;
    float: right;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(55, 97, 160);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -4px;
    cursor: pointer;
}
.search-button:hover {
    background: #17407E;
}

.search-text {
    /* -webkit-transition: width 0.8s; */
    /* -moz-transition: width 0.8s;
    -o-transition: width 0.8s; */
    /* transition: width 0.8s; */
    border: none;
    background: none;
    outline: none;
    /* float: left; */
    padding: 4px;
    font-size: 14px;
    /* width: 90%; */
    width: inherit;
    color: #545E75;
}

.card-product {
    /* height: 100%; */
    height: 340px;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: white;
    background-clip: border-box;
    border: none;
    border-radius: 3px;
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
}

.card-product-brand {
    margin-left: 12px;
    /* margin-top: 8px;
    height:7%;
    width: 30%; */
    height: auto;
    width: 150px;
}
.filter-search-product-brand {
    height: 45px;
    width: 164px;
}

.card-product-image {
    /* width: 190px; */
    height: auto;
    max-height: -webkit-fill-available;
    max-width: 75%;
    /* height: 70%; */
    align-self: center;
}

.card-product-name {
    color: #17407e;
    font-size: 14px;
    font-weight: 400;
    /* height: 28px; */
    text-align: center;
    align-items: center;
    word-wrap: break-word;
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
    /* overflow: hidden; */
    margin-bottom: 15px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 5px;
    width: 100%;
}

.fade-background {
    opacity: 0.7;
    background-color: #17407e
}

.fullsize-absolute {
    position: absolute;
    height: 100%;
    width: 100%;
}

.transparent-button-logoCategory {
    color: #75787B;
    background-color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    border: none;
}
.filter-transparent-button-logoCategory {
    color: #75787B;
    background-color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    border: none;
    width: 100%;
    padding: 5px;
}

.transparent-button-white {
    color: white;
    background-color: transparent;
    border-radius: 20px;
    border-width: 2px;
    margin-top: 8px;
    border-color: white;
    border-style: solid;
    font-size: 14px;
}

.transparent-button-gray {
    color: #75787B;
    background-color: transparent;
    border-radius: 20px;
    border-width: 1px;
    float: right;
    margin-top: 0px;
    border-color: #75787B;
    font-size: 13px;
    font-weight: 300;
}

.title-underline {
    color: #17407e;
    font-size: 18px;
    font-weight: 700;
    word-wrap: break-word;
    /* text-decoration: underline; */
    display: inline-block;
    border-bottom: 2px solid #17407e;
    /* padding-bottom:2px; */
}

.hidable-content {
    color: white;
    text-align: center;
    opacity: 0;
    /* visibility: hidden; */
    -webkit-transition: opacity 600ms, visibility 600ms;
    transition: opacity 600ms, visibility 600ms;
}

.hidable-content:hover {
    /* visibility: visible; */
    opacity: 1;
}

.hide {
    display: none !important;
}

/* .fade-hide {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 600ms, visibility 600ms;
    transition: opacity 600ms, visibility 600ms;
}

.fade-show {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 600ms, visibility 600ms;
    transition: opacity 600ms, visibility 600ms;
} */

.dropdown-item{
    color: #17407E !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    /* padding: 5px; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.dropdown-menu{
    width: max-content;
    border: none !important;
    border-radius: 0px !important;
    background-color: #c3d0e6 !important;
    overflow-y: auto;
    max-height: 350px;
}

.dropright:hover .dropdown-menu {display: block;}

.dropright:hover .transparent-button-logoCategory {background-color: rgb(215, 219, 221);}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #d8d8d8;
}

.dropdown-filter {
    background-color: #d8d8d8;
    background-clip: border-box;
    border: none;
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 12px 10px 0px rgba(0, 0, 0, 0.5);
}

.dropdown-filter-choice {
    color: #17407e !important;
    font-size: 14px;
    font-weight: 400;
}

/* .dropdown-filter-close{
    background-color: #17407e;
    color: white;
    width: 24px;
    text-align: center;
    float: right;
} */

.dropdown-filter-search {
    background-color: #17407e;
    color: white;
    text-align: center;
    float: right;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 40px;
}

.mobile-brand-arrow {
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-bottom: 20px solid #ffffff;
}

.mobile-brand-filter {
	background-color: #ffffff;
	background-clip: border-box;
	border: none;
	-webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 2px 12px 10px 0px rgba(0, 0, 0, 0.5);
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /*background: url('../images/Gear-0.3s-400px.png') 50% 50% no-repeat rgb(0, 0, 0, 0);*/
    background: url('../images/Gear-0.3s-400px.png') 50% 50% no-repeat;
    -webkit-animation:spin 3s linear infinite;
    -moz-animation:spin 3s linear infinite;
    animation:spin 3s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }