@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: #283c4c;
    font-size: 14px;
    font-weight: 400;
}

.slim-scroll::-webkit-scrollbar {
  width: 5px;
}
.slim-scroll::-webkit-scrollbar-track {
  background: #d9d9d9; 
  border-radius: 10px;
}
.slim-scroll::-webkit-scrollbar-thumb {
  background: #9c9c9c; 
  border-radius: 10px;
}
.slim-scroll::-webkit-scrollbar-thumb:hover {
  background: #9c9c9c; 
}

.navbar {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #cccccc;
}

.navbar-brand img {
    height: 55px;
}

.main {
    display: flex;
}

.filters {
    position: relative;
    min-width: 270px;
    z-index: 1000;
    transition: all 0.5s ease-out;
}

.filters.open {
    min-width: 250px;
}

.filter-content.open {
    margin: 0;
}

.filter-content {
    width: 270px;
    height: calc(100vh - 66px);
    background: #fff;
    padding: 1.25rem;
    overflow: auto;
    scrollbar-width: none;  
    transition: all 0.5s ease-out;
}

/*.filter-content::-webkit-scrollbar {
    width: 0px;
}
*/
/*.filters::after {
    background: #fff;
    width: 30px;
    height: 40px;
    position: absolute;
    content: url("../img/arrow.png");
    top: 30px;
    right: -30px;
    line-height: 55px;
    text-align: center;
    border-radius: 0 20px 20px 0;
    -webkit-box-shadow: -8px 0px 10px 7px rgba(0, 0, 0, 0.05);
    box-shadow: -8px 0px 10px 7px rgba(0, 0, 0, 0.05);
    display: none;
    cursor: pointer;
}*/

.filter-close {
    background: #fff;
    width: 30px;
    height: 40px;
    position: absolute;
    /* content: url("../img/arrow.png"); */
    background-image: url("public/img/arrow.png");
    background-repeat: no-repeat;
    background-position: center;
    top: 30px;
    right: -30px;
    line-height: 55px;
    text-align: center;
    border-radius: 0 20px 20px 0;
    -webkit-box-shadow: -8px 0px 10px 7px rgba(0, 0, 0, 0.05);
    box-shadow: -8px 0px 10px 7px rgba(0, 0, 0, 0.05);
    display: none;
    cursor: pointer;
}

.filters.open .filter-close {
    transform: rotate(180deg);
    border-radius: 20px 0 0 20px;
}

/*.filters.open::after {
    transform: rotate(180deg);
    border-radius: 20px 0 0 20px;
}*/

.content {
    padding: 2rem;
    width: calc(100% - 250px);
    height: calc(100vh - 66px);
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #9c9c9c #d9d9d9;
}

.content::-webkit-scrollbar {
    width: 8px;
}

.content::-webkit-scrollbar-track {
    background: #d9d9d9;
    border-radius: 0px;
}

.content::-webkit-scrollbar-thumb {
    background: #9c9c9c;
    border-radius: 0px;
}

.content::-webkit-scrollbar-thumb:hover {
    background: #9c9c9c;
}

.navbar .nav-item {
    align-self: center;
    font-size: 13px;
    color: #283c4c;
}

.navbar-nav li:nth-child(1),
.navbar-nav li:nth-child(3) {
    font-weight: 600;
}

.navbar-nav li:nth-child(1) {
    margin-right: 60px !important;
}

.modal-title {
    font-size: 1rem;
    color: #259170;
}

.modal .form-control {
    font-size: .85rem;
}

.navbar-toggler {
    border: 0;
    padding: 0;
    margin-right: 1rem;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.cart,
.cart:hover {
    font-size: 24px;
    position: relative;
    line-height: 0;
    margin-left: .5rem;
    color: #283c4c;
}

.cart .count {
    position: absolute;
    background: #ff4246;
    font-size: 10px;
    color: #fff;
    min-width: 16px;
    height: 16px;
    border-radius: 16px;
    line-height: 16px;
    text-align: center;
    font-weight: 500;
    right: -5px;
    top: -8px;
}

.filters .title {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    align-items: center;
    padding-bottom: .75rem;
    margin-bottom: 1.5rem;
}

.filters .title h6 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.filters .title a,
.filters .title a:hover {
    font-size: 10px;
    text-decoration: none;
    color: #283c4c;
}

.filters .title a i {
    font-size: 14px;
    vertical-align: middle;
}

.filter-section {
    padding-bottom: 1.35rem;
    margin-bottom: 1.35rem;
    border-bottom: 1px solid #000;
}

.filter-section .fs-title {
    font-size: 13px;
    margin-bottom: 0.5rem;
    color: #5a5e6b;
    font-weight: 500;
}

.filter-list {
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #9c9c9c #d9d9d9;
}

.filter-list::-webkit-scrollbar {
    width: 5px;
}

.filter-list::-webkit-scrollbar-track {
    background: #d9d9d9;
    border-radius: 10px;
}

.filter-list::-webkit-scrollbar-thumb {
    background: #9c9c9c;
    border-radius: 10px;
}

.filter-list::-webkit-scrollbar-thumb:hover {
    background: #9c9c9c;
}

.filter-list li {
    display: block;
    margin: .75rem 0;
}

.filter-list li:last-of-type {
    margin-bottom: 0;
}

.filter-list .form-check-label {
    font-size: 13px;
    font-weight: 300;
}

.filter-sublist {
    padding: 0 0 0 1.25rem;
    margin: 0;
}

.filter-list .form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    border: 2px solid rgba(0, 0, 0, 1);
    border-radius: 0;
    margin-right: .5rem;
}

.filter-list .form-check-input:checked,
.data-top .form-check-input:checked {
    background-color: #1ea47b;
    border-color: #1ea47b;
    background-size: 14px 14px;
}

.form-check-input:focus {
    border-color: #1ea47b !important;
}
.form-check-input:checked {
    background-color: #1ea47b;
    border-color: #1ea47b !important;
}


.form-check-input:focus,
.form-control:focus {
    border-color: currentColor;
    outline: 0;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, .25);
}

.search {
    overflow: hidden;
    border-radius: 50px;
    background: #fff;
    margin-bottom: 1rem;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
}

.search .input-group-text {
    background: none;
    border: none;
    padding-right: 0;
    color: #283c4c;
}

.search .form-control {
    background: none;
    border: none;
    font-size: 14px;
}

.search>.btn {
    background: none;
    border: none;
    color: #ff4246;
}

.filter-collapse {
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
    max-height: 300px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #9c9c9c #d9d9d9;
    margin-bottom: 1rem;
}

.filter-collapse .filter-set:last-of-type {
    margin-bottom: 0rem;
    border-bottom: 0px solid #ececec;
}

.btn-success {
    background: #1ea47b;
    border-color: #1ea47b;
}

.btn-success:hover {
    background-color: #259170 !important;
}

.btn-big {
    border-radius: 8px;
    padding: .5rem 2.75rem;
    font-size: 14px;
    font-weight: 500;
}

.select-links {
    padding: 0;
    margin: 0;
}

.select-links li {
    display: inline-block;
}

.select-links li a {
    color: #283c4c;
    text-decoration: underline;
}

.select-links li a:hover {
    color: #283c4c;
    text-decoration: none;
}

.collape-btn,
.collape-btn:hover {
    font-size: 12px;
    color: #415361;
    text-decoration: none;
}

.card {
    border: none;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
}

.data-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ececec;
    padding: .5rem 0 1rem 0;
}

.data-info {
    display: flex;
    width: calc(100% - 80px);
    align-items: center;
}

.data-info .icon {
    height: 42px;
    min-width: 42px;
    max-width: 42px;
    line-height: 46px;
    text-align: center;
    background: #bee2d7;
    color: #1ea47b;
    border-radius: 14px;
    margin: 0 .75rem;
    font-size: 24px;
}

.data-info .title {
    overflow: hidden;
}

.data-info .form-check-input {
    min-width: 1em;
    min-height: 1em;
    border-radius: 0;
    border: 1px solid #b9b9b9;
}

.data-info h5 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: .25rem;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-info h6 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: .25rem;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-price {
    white-space: nowrap;
    text-align: right;
    width: 80px;
}

.data-price h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 22px;
}

.data-price .tag {
    background: #e8eff4;
    color: #283c4c;
    font-size: 12px;
    text-decoration: none;
    padding: 2px 15px;
    border-radius: 4px;
    line-height: 0;
    font-weight: 600;
    border: 1px solid #94a2ff;
}

.data-list {
    padding: 0;
    margin: 0;
}

.data-list li {
    display: inline-block;
    margin-right: .25rem;
    vertical-align: middle;
    font-weight: 400;
    font-size: 13px;
}

.data-bottom {
    margin-top: 1rem;
}

.data-add {
    display: flex;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.add-btn,
.add-btn:hover {
    color: #1ea47b;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
}

.add-btn.disabled {
    color: #415361;
    cursor: none;
}

.data-bottom .date {
    font-size: 12px;
    font-weight: 300;
}

.data-text {
    font-size: 13px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: .5rem;
}

.tooltip-inner {
    max-width: 200px !important;
    text-align: left;
    font-size: 12px;
}

.filter-set {
    display: flex;
    column-gap: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ececec;
}

.filter-set .title {
    flex: 150px;
}

.filter-set .fl {
    flex: calc(100% - 150px);
}

.filter-items {
    padding: 0 0 1rem 0;
    margin: 0 0 1rem 0;
    border-bottom: 1px solid #ececec;
}

.filter-set .fl .filter-items:last-of-type {
    border-bottom: 0px solid #ececec;
    padding: 0;
}

.filter-items li {
    display: inline-block;
    background: #e8eff4;
    padding: 2px 2.25rem 2px 1rem;
    border-radius: 16px;
    margin-right: 1rem;
    position: relative;
}

.filter-items li:after {
    content: "\ef06";
    font-family: boxicons !important;
    font-weight: 400;
    position: absolute;
    right: 10px;
    color: #94a2ff;
    cursor: pointer;
}

.category-title {
    font-size: 12px;
    margin-bottom: .75rem;
}

.filter-search {
    position: relative;
}
.filter-search .input-append {
    position: absolute !important;
    border-left: none;
    position: absolute;
    right: 0;
    height: 100%;
    background-color: transparent;
    padding: 0;
    border: none;
    z-index: 99;
    padding-right: 8px;
    display: none;
}
.filter-search .form-control {
    flex: 1 1 auto;
    outline: none;
    width: 100%;
    height: 36px;
    padding: 10px 30px 10px 30px;
    border: 2px solid #f9f9f9;
    border-radius: 4px;
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    background-color: #f9f9f9;
    background-image: url(../img/search.svg);
    background-repeat: no-repeat;
    background-position: left 8px center;
    font-size: 12px;
}
.filter-search .form-control:focus {
    border-color: #1ea47b;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        width: 200px;
        position: absolute;
        top: 66px;
        right: 0px;
        background: #fff;
        z-index: 100;
        padding: 1rem;
        border-radius: 10px;
        -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
        box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
    }
    .navbar-nav .nav-item {
        align-self: flex-start;
    }
    .navbar-nav .vr {
        display: none;
    }
    .navbar-nav li:nth-child(1) {
        margin-right: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .filters {
        min-width: 0px;
        position: absolute;
    }
    .filter-content {
        margin-left: -250px;
        position: absolute;
    }
    .content {
        width: 100%;
    }
    .filters::after {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .content {
        padding: 1rem;
    }
}

.chbx-disable {
	pointer-events: none;
}
.filter-items li {
	margin-bottom: 10px;
}
.lds-ellipsis {
	margin: 0 auto;
	position: relative;
	width: 80px;
	height: 80px;
}
.lds-ellipsis div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #1ea47b;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}

#common-search-box {
	display: flex;
	flex-direction: row;
	align-items: center;
	overflow: hidden;
	height: 48px;
	padding: 0;
	border: 2px solid #ced3d7;
	border-radius: 10px;
	box-sizing: border-box;
	margin-bottom: 1rem;
}

#search_text {
	flex: 1 1 auto;
	padding: 10px 16px;
	border: 0;
	color: #212529;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;
	line-height: 25px;
	/* font-size: 14px; */
}

#common-search-button {
	padding: 7px 10px;
	/* color: #6f757b; */
	cursor: pointer;
	background: none;
	border: 0;
}

#common-search-button span {
	background: none;
	border: 0;
	color: #84898d;
}

.text-in {
	background-color: #1ea47b !important;
	color: #fff !important;
	padding: 10px !important;
}

.text-in span {
	color: #ffffff !important;
}

.common-search-clear-button {
	padding: 12px 5px;
    cursor: pointer;
    border: 0;
    background-color: #ffffff;
    color: #84898d;
}