* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ececec;
  font-family: 'Open Sans', sans-serif, serif;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
  background-color: #4ABDAC;
  color: white;
  height: 56px;
}
header .left-menu {
  display: flex;
  justify-content: center;
}
header .right-menu {
  display: flex;
  gap: 15px;
}
nav {
  padding: 5px;
  flex-basis: 30%;
  color: white;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
nav ul {
  display: flex;
  justify-content: space-between;
}
.ads {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.products {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.pd .image {
  width: 300px;
  height: 200px;
  background-color: #585555;
}
.pd .description {
  font-size: 20px;
  font-weight: bold;
  margin-top: 8px;
}
.pd .price {
  margin-top: 6px;
  font-size: 12px;
}
.pd .price > span {
  font-weight: lighter;
  color: #585555;
}
.logo {
  width: 50px;
}
.bars-menu {
  color: black;
  padding: 20px;
  font-size: 40px;
}
.user-login {
  position: relative;
}
i {
  font-size: 26px;
}
.user-login span {
  position: absolute;
  top: 36px;
  left: -16px;
  width: 70px;
}

.cart {
  margin-right: 20px;
}

.cart i {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.slider {
  margin-top: 20px;
}
.inner-slider {
  display: flex;
  justify-content: center;
}

.title {
  text-align: center;
  margin: 20px 0;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #f1f1f1;
  margin-top: 30px;
  padding: 50px;
  gap: 20px;
}

footer .left-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 50px;
}

.social-networks {
  display: flex;
  list-style: none;
}

.social-networks li {
  margin: 10px;
}

.social-networks img {
  width: 42px;
  height: auto;
  margin-left: 10px;
}

.copyright {
  color: #585555;
  text-align: center;
}

.searchbox {
  margin-right: 30px;
}

.searchbox i {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.searchbox input {
  border-radius: 5px;
  padding: 5px;
  font-size: 20px;
}

button.primary {
  background-color: white;
  color: #4ABDAC;
  border-radius: 5px;
  padding: 5px;
  border: solid white 1px;
  width: 90px;
}

button.secondary {
  background-color: #4ABDAC;
  color: white;
  border-radius: 5px;
  padding: 10px;
  border: solid white 1px;
}

button.terciary {
  background-color: #F7B733;
  color: white;
  border-radius: 5px;
  padding: 10px;
  border: solid white 1px;
}

.login-btn {
  margin-top: 20px;
}

.container {
  display: flex;
  width: 80%;
  margin: 50px auto;
}

.login-container {
  width: 48%;
  margin-right: 4%;
  position: relative;
}

.login-container::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: black;
  right: -4%;
  top: 0;
}

.login-container h1 {
  margin-bottom: 30px;
}

.card {
  background-color: white;
  padding: 36px;
}

.login-form input {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px;
  width: 90%;
}

.login-aside {
  width: 48%;
  height: 100%;
  position: relative;
}

.login-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}

.login-images .cat-img {
  width: 90%;
}

.login-images .first-column {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.login-images .second-column {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.login-images .dog-cat-img {
  display: block;
  width: 90%;
}

.login-images .dog-img {
  display: block;
  width: 90%;
  margin-top: 40px;
}

.register-title {
  position: absolute;
  bottom: 0;
  font-size: 20px;
}

.register-link {
  color: #4ABDAC;
  font-weight: bolder;
}

nav ul a {
  cursor: pointer;
}

.filters-container {
  width: 30%;
  margin-right: 4%;
}

.products-container {
  width: 66%;
}

.card > header{
  border-bottom: gray 1px solid;
}

.card header {
  display: block;
  background-color: white;
  color: black;
  font-weight: normal;
  font-size: 14px;
}

.filters-container {
  padding-bottom: 8px;
}

.filters-container .card, .products-container .card {
  padding: 8px 0;
}

.filters-container input[name$="-filter"] {
  margin-left: 10px;
}

.filters-container .filter-block {
  display: block;
  margin-left: 10px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.products-container .products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 20px;
}

.products .product .product-image {
  display: block;
  margin: auto;
}

.products .product .product-name {
  font-size: 20px;
}

.products .product .price {
  font-size: 14px;
}

.products .product .price span {
  opacity: 0.5;
}

.products .product button.add-product {
  margin-top: 10px;
}


input[type="checkbox"] {
  -webkit-appearance: none;
  border: 1px solid #cacece;
  padding: 9px;
  border-radius: 0;
  display: inline-block;
  position: relative;
}

input[type="checkbox"]:active, input[type="checkbox"]:checked:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

input[type="checkbox"]:checked {
	background-color: #e9ecee;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	color: #99a1a7;
}

input[type="checkbox"]:checked:after {
	content: '\2714';
	font-size: 14px;
	position: absolute;
	top: 0px;
	left: 3px;
	color: #99a1a7;
}