.card *,
.cart-detail,
.breadcrumbs,
.pagination {
	color: #cedae8;
	border-color: #cedae8;
}

.card {
	border-color: #cedae8;
}

.card .card-body {
	padding: 10px !important;
}

.card .card-body a {
	color: #212529;
	text-decoration: none;
	min-height: 130px;
	display: block;
	font-size: 16px;
}

.card .card-body a:hover,
.cart-detail a:hover {
	color: var(--color-primary);
}

.card .card-footer .btn.btn-outline-dark,
.cart-detail .btn.btn-outline-dark {
	color: var(--color-primary);
	border-color: #cedae8;
}

.card .card-footer .btn.btn-outline-dark:hover,
.cart-detail .btn.btn-outline-dark:hover {
	color: #fff;
	background-color: var(--color-primary);
}

.card .card-img-top {
	max-height: 270px;
	min-height: 270px;
	object-position: center;
	object-fit: contain;
	padding: 10px;
}

.card .card-body .price,
.cart-detail .price {
	color: var(--color-primary);
	font-size: 20px;
	font-weight: 600;
}

.cart-detail .price {
	font-size: 25px;
}

body footer *{
	color: #cedae8;
}

.products {
	min-height: 800px;
}

.products .alert {
	color: #566a8f;
	font-size: 20px;
	font-weight: 400;
}

.cart-detail h1 {
	color: #212529;
	font-size: 28px;
}

.cart-detail .article {
	color: #212529;
}

.cart-detail .tabs {
	padding: 0;
	margin: 20px 0;
	margin-bottom: 50px;
}

.cart-detail .tabs li {
	
}

.cart-detail .tabs li a {
	text-decoration: none;
	color: var(--color-primary);
}

.cart-detail .tabs li.active a,
.cart-detail .tabs li:hover a {
	color: #fff;
}

.cart-detail .tabs li.active,
.cart-detail .tabs li:hover {
	background-color: var(--color-primary);
}

.cart-detail .tabs-content {
	display: none;
	color: #212529;
}

.cart-detail .tabs-content.active {
	display: block;
}

.cart-detail .properties {
	list-style: none;
	padding: 0;
	overflow: hidden;
	/*border-radius: 33px;*/
	border: 2px solid #cedae8;
}

.cart-detail .properties li {
	padding: 10px;
	background-color: #cedae8;
	word-wrap: break-word;
}

.cart-detail .properties li::after {
	content: "";
	display: table;
	clear: both;
}

.cart-detail .properties li:nth-child(2n) {
	background-color: #fff;
}

.cart-detail .properties li b {
	min-width: 40%;
	display: inline-block;
	float: left;
}

.cart-detail .properties li span {
	display: inline-block;
	float: right;
}

.pagination {
	display: block;
	text-align: center;
	margin: 100px 0;
	margin-top: 40px;
}

.pagination a,
.pagination span {
	color: var(--color-primary);
	border: 1px solid #cedae8;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	display: inline-block;
}

.pagination a:hover,
.pagination .current {
	color: #fff;
	background-color: var(--color-primary);
}

.breadcrumbs {
	display: block;
	text-align: left;
	max-width: 1320px;
	margin: 60px auto;
	color: #212529;
	font-size: 13px;
	padding: 0 40px;
}

.breadcrumbs a {
	text-decoration: none;
	color: var(--color-primary);
}


.bg {
	animation:slide 3s ease-in-out infinite alternate;
	background-image: linear-gradient(-60deg, #212529 50%, #09f 50%);
	bottom:0;
	left:-50%;
	opacity:.5;
	position:fixed;
	right:-50%;
	top:0;
	z-index:-1;
}

.bg2 {
	animation-direction:alternate-reverse;
	animation-duration:4s;
}

.bg3 {
	animation-duration:5s;
}

@keyframes slide {
	0% {
		transform:translateX(-25%);
	}
	100% {
		transform:translateX(25%);
	}
}



#notfound {
	position: relative;
	height: 75vh;
}

#notfound .notfound {
	position: absolute;
	left: 50%;
	top: 25%;
	-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);
}

.notfound {
	max-width: 767px;
	width: 100%;
	line-height: 1.4;
	padding: 0;
	text-align: center;
	background: #fff;
	-webkit-box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.1);
					box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.1);
}

.notfound .notfound-404 {
	position: relative;
	height: 180px;
}

.notfound .notfound-404 h1 {
	font-family: 'Roboto', sans-serif;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);
	font-size: 165px;
	font-weight: 700;
	margin: 0px;
	color: rgba(33, 37, 41, 1);
	text-transform: uppercase;
}

.notfound .notfound-404 h1>span {
	color: var(--color-primary);
}

.notfound h2 {
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	font-weight: 400;
	text-transform: uppercase;
	color: #151515;
	margin-top: 0px;
	margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
	.notfound h2 {
		font-size: 18px;
	}
}

@media only screen and (max-width: 480px) {
	.notfound .notfound-404 h1 {
		font-size: 141px;
	}
}