::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: var(--base-skin);
	border-radius: 4px;
}


/* Preloader */
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #ffffff;
	transition: .3s all ease;
}

.preloader.loaded {
	opacity: 0;
	visibility: hidden;
}

.card {
	position: relative;
	width: 35px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 5px;
	margin-right: 5px;
	border-radius: 2px;
	font-size: 20px;
	color: #ffffff;
	background: linear-gradient(to bottom right, #ff006d, #cc0c5f);
	box-shadow: 3px 3px 10px rgba(36, 23, 28, 0.3);
}

.card:nth-child(1) {
	animation: shuffle 1s infinite;
}

.card:nth-child(2),
.card:nth-child(3),
.card:nth-child(4) {
	animation: move 1s infinite;
}

@keyframes shuffle {
	50% {
		opacity: .25;
		transform: scale(0.85);
	}
	75% {
		opacity: .25;
		transform: scale(0.85) translateX(90px);
	}
	100% {
		opacity: 1;
		transform: translateX(135px);
	}
}

@keyframes move {
	100% {
		transform: translateX(-45px);
	}
}


/* Feature Box */
.featured-custom-box .featured-thumbnail {
	padding: 10px;
}
.featured-custom-box .featured-thumbnail img {
	width: 150px !important;
}
.featured-custom-box .featured-content {
	margin-top: 10px;
	margin-bottom: 30px;
	padding: 0 !important;
}
.featured-custom-box .featured-content .featured-title span {
	color: var(--base-headingfont-color);
	font-weight: bold;
}


.cursor-pointer {
	cursor: pointer;
}

.widget .widget-contact-list li {
	padding: 5px 0px 5px 0;
}

.copyright {
	color: var(--base-white) !important;
}

.featured-icon-contact-box {
	padding: 20px;
	background-color: #051d38;
	display: flex;
	justify-content: center;
	align-items: center;
}

.text-input input,
.text-input select,
.text-input textarea {
	color: var(--base-headingfont-color) !important;
}

.text-input input::placeholder,
.text-input textarea::placeholder {
	color: rgba(102,102,102,.5) !important;
}

.featured-custom-imagebox-portfolio {
	cursor: pointer;
	/* border: 1px solid var(--base-dark); */
}

.featured-custom-imagebox-portfolio .cmt-media-link a {
	background-color: var(--base-skin) !important;
}

.featured-custom-imagebox-portfolio .featured-content {
	position: unset !important;
	opacity: 1 !important;
	transform: unset !important;
	color: rgba(255,255,255,.72) !important;
	box-shadow: 0px 0px 7px 0px rgb(43 52 59 / 8%) !important;
	background-color: var(--base-skin) !important;
}

.featured-custom-imagebox-portfolio .featured-thumbnail {
	background-color: white !important;
}

.featured-custom-imagebox-portfolio .featured-content .featured-title h3 a {
	color: white !important;
}

.img-cover {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

.img-contain {
	object-fit: contain;
	object-position: center;
	width: 100%;
	height: 100%;
}

.custom-product-type-box {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-bottom: 15px;
}

.custom-product-type-icon {
	width: 120px;
}

.custom-product-type-content {
	flex: 1;
}

.custom-product-type-content h5 {
	margin-bottom: 10px;
}

.widget-banner .cmt-bg-layer img {
	height: 100%;
	object-fit: cover;
}

.sidebar-left .sticky-lg-top, 
.sidebar-right .sticky-lg-top {
	top: 40px;
}

@media (min-width: 1200px) {
	.sidebar-left .sticky-lg-top,
	.sidebar-right .sticky-lg-top {
		top: 120px;
	}
}

.featured-custom-imagebox {
	box-shadow: 0px 0px 7px 0px rgb(43 52 59 / 8%);
	border: 1px solid var(--base-skin);
	cursor: pointer;
}

.featured-custom-imagebox .featured-thumbnail {
	padding: 30px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-title.title-style-center_text .title-desc p {
	width: 64% !important;
}

.text-input input, 
.text-input select, 
.text-input textarea {
	border: 1px solid var(--base-grey) !important;
}

.text-input input:focus, 
.text-input select:focus, 
.text-input textarea:focus {
	border: 1px solid var(--base-dark) !important;
	transition: all .3s;
}


/* Pagination */
.paginationjs {
	margin-top: 20px;
}

.paginationjs .paginationjs-pages ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	gap: 10px;
}

.paginationjs .paginationjs-pages ul li {
	list-style: none;
}

.paginationjs .paginationjs-pages ul li a {
	font-size: 13px;
	line-height: 1;
	padding: 11px 20px;
	text-align: center;
	display: inline-block;
	font-weight: 600;
	font-style: italic;
	border: 1px solid #eaebec;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background-color: var(--base-skin);
	color: var(--base-white);
	cursor: pointer;
}

.paginationjs .paginationjs-pages ul li a:hover {
	background-color: var(--base-dark);
	color: var(--base-white);
}

.paginationjs .paginationjs-pages ul li.disabled a {
	background-color: var(--base-white);
	color: var(--base-headingfont-color);
	cursor: default;
}


footer .widget-post li .post-img img {
	object-fit: cover;
}