/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
  *
 * bootstrap-slider is released under the MIT License
 * Copyright (c) 2017 Kyle Kemp, Rohit Kalkur, and contributors
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * ========================================================= */
.slider {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.slider.slider-horizontal {
    width: 220px;
    height: 20px;
}

.slider.slider-horizontal .slider-track {
    height: 10px;
    width: 100%;
    margin-top: -5px;
    top: 50%;
    left: 0;
}

.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
    height: 100%;
    top: 0;
    bottom: 0;
}

.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
    margin-left: 0px;
}

.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-width: 0 10px 10px 10px;
    width: 0;
    height: 0;
    border-bottom-color: #0480be;
    margin-top: 0;
}

.slider.slider-horizontal .slider-tick-container {
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slider.slider-horizontal .slider-tick-label-container {
    white-space: nowrap;
    margin-top: 20px;
}

.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
    padding-top: 4px;
    display: inline-block;
    text-align: center;
}

.slider.slider-horizontal.slider-rtl .slider-track {
    left: initial;
    right: 0;
}

.slider.slider-horizontal.slider-rtl .slider-tick,
.slider.slider-horizontal.slider-rtl .slider-handle {
    margin-left: initial;
    margin-right: 0px;
}

.slider.slider-horizontal.slider-rtl .slider-tick-container {
    left: initial;
    right: 0;
}

.slider.slider-vertical {
    height: 210px;
    width: 20px;
}

.slider.slider-vertical .slider-track {
    width: 10px;
    height: 100%;
    left: 25%;
    top: 0;
}

.slider.slider-vertical .slider-selection {
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
}

.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
    width: 100%;
    left: 0;
    right: 0;
}

.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
    margin-top: -10px;
}

.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
    border-width: 10px 0 10px 10px;
    width: 1px;
    height: 1px;
    border-left-color: #0480be;
    border-right-color: #0480be;
    margin-left: 0;
    margin-right: 0;
}

.slider.slider-vertical .slider-tick-label-container {
    white-space: nowrap;
}

.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
    padding-left: 4px;
}

.slider.slider-vertical.slider-rtl .slider-track {
    left: initial;
    right: 25%;
}

.slider.slider-vertical.slider-rtl .slider-selection {
    left: initial;
    right: 0;
}

.slider.slider-vertical.slider-rtl .slider-tick.triangle,
.slider.slider-vertical.slider-rtl .slider-handle.triangle {
    border-width: 10px 10px 10px 0;
}

.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
    padding-left: initial;
    padding-right: 4px;
}

.slider.slider-disabled .slider-handle {
    background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
    background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
    background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
}

.slider.slider-disabled .slider-track {
    background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
    background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
    background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
    cursor: not-allowed;
}

.slider input {
    display: none;
}

.slider .tooltip.top {
    margin-top: -36px;
}

.slider .tooltip-inner {
    white-space: nowrap;
    max-width: none;
}

.slider .hide {
    display: none;
}

.slider-track {
    position: absolute;
    cursor: pointer;
    background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
    background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
    background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.slider-selection {
    position: absolute;
    background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
    background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
    background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
}

.slider-selection.tick-slider-selection {
    background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
    background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
    background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
}

.slider-track-low,
.slider-track-high {
    position: absolute;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
}

.slider-handle {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #337ab7;
    background-image: -webkit-linear-gradient(top, #149bdf 0%, #0480be 100%);
    background-image: -o-linear-gradient(top, #149bdf 0%, #0480be 100%);
    background-image: linear-gradient(to bottom, #149bdf 0%, #0480be 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
    filter: none;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    border: 0px solid transparent;
}

.slider-handle.round {
    border-radius: 50%;
}

.slider-handle.triangle {
    background: transparent none;
}

.slider-handle.custom {
    background: transparent none;
}

.slider-handle.custom::before {
    line-height: 20px;
    font-size: 20px;
    content: '\2605';
    color: #726204;
}

.slider-tick {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
    background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
    background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    filter: none;
    opacity: 0.8;
    border: 0px solid transparent;
}

.slider-tick.round {
    border-radius: 50%;
}

.slider-tick.triangle {
    background: transparent none;
}

.slider-tick.custom {
    background: transparent none;
}

.slider-tick.custom::before {
    line-height: 20px;
    font-size: 20px;
    content: '\2605';
    color: #726204;
}

.slider-tick.in-selection {
    background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
    background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
    background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
    opacity: 1;
}

.min-amount {
    float: left;
}

.max-amount {
    float: right;
}

.inbeauty-product-category-page-content #product-list.row {
    display: block !important;
    -ms-flex-wrap: initial !important;
    flex-wrap: initial !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
}

.inbeauty-filter-sidebar-outer {
    width: 270px;
    min-width: 270px;
}

.inbeauty-product-category-page-content-outer {
    width: 100%;
    padding-left: 0px;
}

.inbeauty-filter-sidebar-outer+.inbeauty-product-category-page-content-outer {
    width: calc(100% - 270px);
    padding-left: 40px;
}

.inbeauty-filter-sidebar {
    padding: 24px;
    border: 1px solid #e6e6e6;
}

.inbeauty-filter-hd-clear-filter {
    margin-bottom: 30px;
}

.inbeauty-filter-hd-clear-filter .inbeauty-hd {
    color: #000000;
    font-family: "Text SemiBold";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.inbeauty-clear-filter {
    color: #7A7C7C;
    font-family: "Text Medium";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.26px;
    cursor: pointer;
    border-bottom: 1px solid #e6e6e6;
}

.inbeauty-clear-filter:hover {
    color: #000000;
    border-color: #000000;
}

.inbeauty-checkbox-discount-instock {
    margin-bottom: 24px;
}

.inbeauty-checkbox-discount-instock .title {
    color: #000000;
    font-family: "Text SemiBold";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

.inbeauty-checkbox-discount-instock .checkbox {
    position: relative;
    width: 38px;
    height: 22px;
}

.inbeauty-checkbox-discount-instock .checkbox input {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 5;
    cursor: pointer;
}

.inbeauty-checkbox-discount-instock .checkbox label {
    width: 100%;
    height: 22px;
    border-radius: 14px;
    border: 1.5px solid #B7B7B7;
    padding: 4px;
    margin: 0px;
    cursor: pointer;
}

.inbeauty-checkbox-discount-instock .checkbox label:before {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    top: 4px;
    left: 4px;
    background-color: #B7B7B7;
    border-radius: 100px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.inbeauty-checkbox-discount-instock .checkbox input:checked+label {
    border-color: #FF7B66;
}

.inbeauty-checkbox-discount-instock .checkbox input:checked+label:before {
    background-color: #FF7B66;
    left: calc(100% - 18px);
}

.inbeauty-price-filter {
    position: relative;
    padding-top: 26px;
}

.inbeauty-price-filter .min-amount,
.inbeauty-price-filter .max-amount {
    position: absolute;
    top: 0px;
    color: #000000;
    font-family: "Text Medium";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.inbeauty-price-filter .min-amount {
    left: 0px;
}

.inbeauty-price-filter .max-amount {
    right: 0px;
}

.inbeauty-price-filter .tooltip {
    display: none !important;
}

.inbeauty-price-filter .slider.slider-horizontal {
    width: 100%;
    height: 18px;
}

.inbeauty-price-filter .slider.slider-horizontal .slider-track {
    height: 1.5px;
    margin-top: -0.75px;
    background: none;
    background-color: #e6e6e6;
    box-shadow: none;
    border-radius: 0px;
}

.inbeauty-price-filter .slider-track-low,
.inbeauty-price-filter .slider-track-high {
    border-radius: 0px;
    box-shadow: none;
}

.inbeauty-price-filter .slider.slider-horizontal .slider-selection {
    background: none;
    background-color: #e6e6e6;
    box-shadow: none;
    border-radius: 0px;

}

.inbeauty-price-filter.inbeauty-price-changed .slider.slider-horizontal .slider-selection {
    background-color: #FF7B66;
}

.inbeauty-price-filter .slider-handle {
    width: 18px;
    height: 18px;
    background: none;
    background-color: #ffffff;
    box-shadow: none;
    border: 1.5px solid #e6e6e6;
    border-radius: 100px;
}

.inbeauty-price-filter.inbeauty-price-changed .slider-handle {
    border-color: #FF7B66;
}

.inbeauty-price-filter .slider-handle.max-slider-handle.round {
    margin-left: -18px;
}

.inbeauty-price-filter .slider-handle.min-slider-handle.round {
    margin-left: 0px;
}

.inbeauty-filter-list-group-outer {
    margin-top: 40px;
}

.inbeauty-filter-list-group {
    margin-bottom: 24px;
}

.inbeauty-filter-list-hd {
    padding-bottom: 8px;
    border-bottom: 1.5px solid #e6e6e6;
    cursor: pointer;
}

.inbeauty-filter-list-hd .hd {
    color: #000000;
    font-family: "Text SemiBold";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

.inbeauty-filter-list-hd .icon {
    font-size: 12px;
    color: #000000;
    height: 18px;
}

.inbeauty-filter-list-hd.active .icon i:before {
    position: relative;
    top: -4px;
    content: "\e901";
    font-size: 0.6px;
}

.inbeauty-filter-list-hd:not(.active)+.inbeauty-filter-list-options {
    display: none;
}

#button-filter {
    margin-top: 10px;
}

.inbeauty-filter-sidebar .inbeauty-filter-list-group .checkbox {
    position: relative;
    width: fit-content;
}

.inbeauty-filter-sidebar .inbeauty-filter-list-group .checkbox input {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 5;
    cursor: pointer;
}

.inbeauty-filter-sidebar .inbeauty-filter-list-group .checkbox label {
    position: relative;
    padding-left: 24px;
    margin: 0px;
    color: #000000;
    font-family: "Text Medium";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.56px;
    cursor: pointer;
}

.inbeauty-filter-sidebar .inbeauty-filter-list-group .checkbox label a {
    color: #000000;
	text-decoration: none;
}

.inbeauty-filter-sidebar .inbeauty-filter-list-group .checkbox label:before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0px;
    left: 0px;
    border: 1px solid #e6e6e6;
}

.inbeauty-filter-sidebar .inbeauty-filter-list-group .checkbox input:checked+label:before {
    border-color: #FF7B66;
}

.inbeauty-filter-sidebar .inbeauty-filter-list-group .checkbox input:checked+label:after {
    content: "\e90c";
    font-family: 'inbeauty' !important;
    speak: never;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    font-weight: bold;
    padding-left: 1px;
    padding-top: 1px;
    color: #FF7B66;
    text-align: center;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0px;
    left: 0px;
}

.inbeauty-filter-sidebar .inbeauty-filter-list-group .checkbox .color {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 100px;
    /* margin-top: -1px; */
    position: relative;
    top: -1px;
    margin-right: 8px;
}

.inbeauty-filter-list-option {
    margin-top: 24px;
}

.inbeauty-filter-list-option .checkbox:not(:first-child) {
    margin-top: 14px;
}


.inbeauty-page-title {
    color: #000000;
    font-family: 'Heading';
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 14px 0px 25px 0px;
}

.inbeauty-description-thumb .inbeauty-thumb {
    width: 158px;
    min-width: 158px;
    margin-left: 30px;
    order: 2;
}

.inbeauty-description-thumb .inbeauty-thumb img {
    max-width: 158px;
    width: 100%;
    height: auto;
}

.inbeauty-description-thumb .inbeauty-cat-description-outer {
    width: 100%;

}

.inbeauty-description-thumb .inbeauty-thumb+.inbeauty-cat-description-outer {
    width: calc(100% - 158px);
    max-width: 600px;
    order: 1;
}

.inbeauty-description-thumb .inbeauty-cat-description-outer:not(.active) .inbeauty-cat-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.inbeauty-description-thumb .inbeauty-cat-description,
.inbeauty-cat-description-check-lines,
.inbeauty-description-thumb .inbeauty-cat-description p,
.inbeauty-cat-description-check-lines p .inbeauty-description-thumb .inbeauty-cat-description font,
.inbeauty-cat-description-check-lines font {
    color: #000000 !important;
    font-family: "Text Medium" !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 140% !important;
    /* 22.4px */
}

.inbeauty-description-thumb .inbeauty-cat-description a,
.inbeauty-description-thumb .inbeauty-cat-description p a,
.inbeauty-cat-description-check-lines a,
.inbeauty-cat-description-check-lines p a {
    color: #000000 !important;
    text-decoration: underline;
}

.inbeauty-cat-description-view-more-less a {
    color: #000000;
    font-family: "Text SemiBold";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 10px;

}

.inbeauty-cat-description-view-more-less a:hover span {
    text-decoration: underline;
}

.inbeauty-cat-description-view-more-less a i {
    font-size: 7px;
    font-weight: bold;
    margin-left: 10px;
}

.inbeauty-product-category-sort-content {
    margin-top: 25px;
}

.inbeauty-product-category-sort-content .inbeauty-product-category-sort-options {
    order: 2;
    position: relative;
    top: 1px;
}

.inbeauty-product-category-sort-content .inbeauty-total-product {
    order: 1;
}

.inbeauty-total-product {
    color: rgba(0, 0, 0, 0.5);
    font-family: "Text Regular";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.inbeauty-select-field+.select2-container {
    width: fit-content !important;
    max-width: 100%;
}

.inbeauty-select-field+.select2-container .select2-selection--single {
    padding: 0px;
    border: none;
    border-radius: 0px;
    outline: none;
    box-shadow: none;
    height: 26px;
}

.inbeauty-select-field+.select2-container .select2-selection__rendered {
    padding: 6px 24px 6px 0px;
    line-height: 26px;
    color: #000000;
    font-family: "Text SemiBold";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.inbeauty-select-field+.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 22px;
    text-align: center;
}

.inbeauty-select-field+.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}

.inbeauty-select-field+.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    position: relative;
    top: -1px;
    content: "\e914";
    font-family: 'inbeauty' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 6px;
    color: #000000;

}

.inbeauty-select-field+.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:before {
    content: "\e913";
}

.select2-dropdown.select2-dropdown-updated {
    min-width: 220px;
    border: 1px solid #e6e6e6;
    border-radius: 0px;
}

.select2-dropdown.select2-dropdown-updated.inbeauty-select-right {
    min-width: 112px;
}

.select2-dropdown.select2-dropdown-updated ul li {
    padding: 8px 12px;
    color: rgba(0, 0, 0, 0.62);
    font-family: "Text Medium";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.28px;
}

.select2-dropdown.select2-dropdown-updated ul li.select2-results__option[aria-selected="true"],
.select2-dropdown.select2-dropdown-updated ul li.select2-results__option--highlighted[aria-selected="true"] {
    background-color: #FF7B66;
    color: #ffffff;
}

.select2-dropdown.select2-dropdown-updated ul li.select2-results__option--highlighted[aria-selected="false"] {
    background-color: #F3F3F8;
    color: #000000;
}

.inbeauty-input-limit-dropdown {
    margin-right: 24px;
}

.select2-container.select2-container--default.select2-container--open:not(.select2-container--below) .select2-dropdown-updated {
    margin-left: -110px;
}

.select2-container.select2-container--default.select2-container--open:not(.select2-container--below) .select2-dropdown-updated.inbeauty-select-right {
    margin-left: -3px;
}

.inbeauty-product-category-page .inbeauty-theme-product-list-section {
    padding: 24px 0px 80px 0px;
}

.inbeauty-product-category-page .inbeauty-theme-product-list-section .col-sm-2 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0px 12px;
}

.inbeauty-product-category-page .inbeauty-theme-product-list-section:not(.inbeauty-theme-product-list-slider-section) .row {
    margin: 0px -12px;
}

#product-category,
#product-manufacturer {
    padding-bottom: 180px;
    overflow-x: hidden;
}

.inbeauty-pagination-outer ul {
    padding: 0px;
    gap: 14px;
}

.inbeauty-pagination-outer ul li {
    list-style: none;
}

.inbeauty-pagination-outer ul li.inbeauty-prev a,
.inbeauty-pagination-outer ul li.inbeauty-next a {
    color: #000000;
    font-family: "Text SemiBold";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    text-decoration: none !important;
}

.inbeauty-pagination-outer ul li.inbeauty-prev a i,
.inbeauty-pagination-outer ul li.inbeauty-next a i {
    font-size: 22px;
}

.inbeauty-pagination-outer ul li.inbeauty-prev a i {
    margin-right: 8px;
}

.inbeauty-pagination-outer ul li.inbeauty-next a i {
    margin-left: 8px;
}

.inbeauty-pagination-outer ul li.inbeauty-prev a:hover span,
.inbeauty-pagination-outer ul li.inbeauty-next a:hover span {
    text-decoration: underline;
}

.inbeauty-pagination-outer ul li:not(.inbeauty-prev):not(.inbeauty-next) .page-link {
    width: 22px;
    height: 22px;
    display: flex;
    color: #000000;
    font-family: "Text Medium";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none !important;
}

.inbeauty-pagination-outer ul li:not(.inbeauty-prev):not(.inbeauty-next).active .page-link {

    background-color: #000000;
    color: #ffffff;
}








@media (max-width: 1350px) {
    .inbeauty-product-category-page .inbeauty-theme-product-list-section .col-sm-2 {
        -ms-flex: 0 0 33.333333333%;
        flex: 0 0 33.333333333%;
        max-width: 33.333333333%;
    }
}

@media (max-width: 1175px) {
    .inbeauty-product-category-page .inbeauty-theme-product-list-section:not(.inbeauty-theme-product-list-slider-section) .col-sm-2:nth-child(n+5) {
        display: flex !important;
    }

    #product-category,
    #product-manufacturer {
        padding-bottom: 100px;
    }

    .inbeauty-filter-open {
        cursor: pointer;
    }

    .inbeauty-total-product {
        margin: 30px 0px 0px 0px;
    }

    .inbeauty-page-title {
        margin: 0px 0px 25px 0px;
    }

    .inbeauty-product-category-sort-content {
        margin: 24px -30px 0px -30px;
        padding: 12px 30px;
        border-top: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
    }

    body.inbeauty-filter-menu-open {
        overflow: hidden;
    }

    #button-filter {
        margin-top: 0px;
        position: fixed;
        bottom: 50px;
        left: 16px;
        width: calc(100% - 32px) !important;
    }

    .inbeauty-filter-list-group {
        margin-bottom: 0px;
    }

    .inbeauty-filter-list-hd {
        padding: 18px 0px;
    }

    .inbeauty-filter-list-group-outer {
        margin-top: 24px;
    }

    .inbeauty-filter-list-option {
        margin: 24px 0px;
    }

    .inbeauty-close-filter-menu {
        min-width: 28px;
        font-size: 17px;
        margin-right: 25px;
        cursor: pointer;
    }

    body.inbeauty-filter-menu-open .inbeauty-mobile-menu-overlay {
        display: block;
        opacity: 1;
    }

    .inbeauty-filter-sidebar-outer {
        position: fixed;
        top: 100%;
        left: 0px;
        width: 375px;
        height: 100%;
        padding: 0px 0px 104px 0px;
        background-color: #ffffff;
        border-right: 1px solid #f3f3f3;
        height: 0px;
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        z-index: 1030;
    }

    .inbeauty-filter-sidebar {
        border: none;
        padding: 40px 16px 0px 16px;
    }

    body.inbeauty-filter-menu-open .inbeauty-filter-sidebar-outer {
        height: auto;
        opacity: 1;
        transform: scaleY(1);
        top: 100%;
    }

    .inbeauty-filter-sidebar {
        position: relative;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .inbeauty-product-category-page {
        display: block !important;
    }

    .inbeauty-filter-sidebar-outer+.inbeauty-product-category-page-content-outer,
    .inbeauty-product-category-page-content-outer {
        width: 100%;
        padding-left: 0px;
    }

    .inbeauty-product-category-page .inbeauty-theme-product-list-section .col-sm-2 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 975px) {
    .inbeauty-product-category-page .inbeauty-theme-product-list-section .col-sm-2 {
        -ms-flex: 0 0 33.333333333%;
        flex: 0 0 33.333333333%;
        max-width: 33.333333333%;
    }
}

@media (max-width: 767px) {
    .inbeauty-pagination-outer ul {
        gap: 8px;
    }

    .inbeauty-pagination-outer ul li.inbeauty-prev a i,
    .inbeauty-pagination-outer ul li.inbeauty-next a i {
        margin: 0px;
    }

    .inbeauty-pagination-outer ul li:not(.inbeauty-prev):not(.inbeauty-next) .page-link,
    .inbeauty-pagination-outer ul li.inbeauty-prev a,
    .inbeauty-pagination-outer ul li.inbeauty-next a {
        border: 1px solid #e6e6e6;
        width: 48px;
        height: 48px;
        font-family: "Text SemiBold";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
    }

    .inbeauty-pagination-outer ul li.inbeauty-prev a:hover,
    .inbeauty-pagination-outer ul li.inbeauty-next a:hover,
    .inbeauty-pagination-outer ul li:not(.inbeauty-prev):not(.inbeauty-next).active .page-link {
        background-color: #000000;
        border-color: #000000;
        color: #ffffff;
    }

    #product-category,
    #product-manufacturer {
        padding-bottom: 80px;
    }

    .inbeauty-product-category-page .inbeauty-theme-product-list-section {
        padding: 24px 0px 54px 0px;
    }

    .inbeauty-breadcrumb {
        display: block !important;
    }

    .inbeauty-breadcrumb ul li:not(:first-child):not(:last-child) {
        display: none !important;
    }

    .inbeauty-breadcrumb ul li {
        margin-right: 4px;
    }

    .inbeauty-breadcrumb ul li:last-child {
        margin-right: 0px;
    }

    .inbeauty-breadcrumb {
        padding: 18px 0px 30px 0px;
    }

    .inbeauty-page-title {
        font-size: 32px;
        line-height: 130%;
        margin: 14px 0px 16px 0px;
        text-align: center;
    }

    .inbeauty-thumb {
        margin-top: -16px;
    }

    .inbeauty-description-thumb {
        text-align: center;
        display: block !important;
    }

    .inbeauty-description-thumb .inbeauty-thumb+.inbeauty-cat-description-outer,
    .inbeauty-description-thumb .inbeauty-cat-description-outer {
        width: 100%;
        max-width: 100%;
    }

    .inbeauty-description-thumb .inbeauty-thumb {
        width: 114px;
        min-width: 114px;
        margin-left: 0px;
    }

    .inbeauty-description-thumb .inbeauty-thumb img {
        max-width: 114px;
    }

    .inbeauty-description-thumb .inbeauty-cat-description,
    .inbeauty-cat-description-check-lines,
    .inbeauty-description-thumb .inbeauty-cat-description p,
    .inbeauty-cat-description-check-lines p .inbeauty-description-thumb .inbeauty-cat-description font,
    .inbeauty-cat-description-check-lines font {
        text-align: left;
    }

    .inbeauty-cat-description-view-more-less {
        text-align: left;
    }

    .inbeauty-product-category-sort-content {
        margin: 24px -16px 0px -16px;
        padding: 12px 16px;
    }
}

@media (max-width: 650px) {
    .inbeauty-product-category-page .inbeauty-theme-product-list-section .col-sm-2 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 550px) {
    .inbeauty-filter-sidebar-outer {
        border-right: 0px;
        width: 100%;
    }
}