.basket-icon {
  position: relative;
}
.basket-icon a img {
  width: 25px;
}
.basket-icon .count {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #000;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background-color: #fff;
  top: 0;
  right: -10px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}

.basket-inside {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  padding: 30px;
}
.basket-inside .list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.basket-inside .list .item {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
.basket-inside .list .item:not(:last-child) {
  margin-bottom: 30px;
  position: relative;
}
.basket-inside .list .item:not(:last-child):after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -15px;
  left: 0;
  background: #eee;
}
.basket-inside .list .item > * {
  flex: 0 0 auto;
  margin-right: 20px;
}
.basket-inside .list .item .image {
  width: 100px;
  height: 100px;
}
.basket-inside .list .item .image img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.basket-inside .list .item .title-part {
  width: 270px;
  display: flex;
  flex-direction: column;
}
.basket-inside .list .item .title-part .title {
  margin-bottom: 5px;
}
.basket-inside .list .item .title-part .description {
  font-size: 14px;
  color: gray;
  line-height: 1.5;
}
.basket-inside .list .item .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}
.basket-inside .list .item .date span {
  font-weight: 600;
}
.basket-inside .list .item .counter {
  position: relative;
}
.basket-inside .list .item .counter button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(219, 219, 219);
  border: none;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  transition: 0.1s ease-in all;
}
.basket-inside .list .item .counter button:hover {
  background: #2b5ae1;
  color: #fff;
  transition: 0.1s ease-in all;
}
.basket-inside .list .item .counter input {
  text-align: center;
  padding: 0;
  padding-left: 15px;
}
.basket-inside .list .item .counter .increase {
  position: absolute;
  right: 0;
  top: 0;
}
.basket-inside .list .item .counter .decrease {
  position: absolute;
  left: 0;
  top: 0;
}
.basket-inside .list .item .price {
  font-size: 20px;
  font-weight: 600;
  flex: 1;
  text-align: right;
}
.basket-inside .list .item .remove {
  margin-right: 0;
}
.basket-inside .list .item .remove .remove-list-item {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.basket-inside .list .item .remove .remove-list-item img {
  width: 25px;
}
.basket-inside .total {
  margin-top: 30px;
  position: relative;
  text-align: right;
  font-size: 20px;
  font-weight: 600;
}
.basket-inside .total:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: -15px;
  left: 0;
  background: #eee;
}
.basket-inside .bottom-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 30px;
}
.basket-inside .bottom-buttons .checkout-btn {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.basket-inside .bottom-buttons .checkout-btn img {
  width: 20px;
  margin-left: 10px;
}
.basket-inside .bottom-buttons .continue-btn {
  background: rgb(219, 219, 219);
}

.post-image {
  position: relative;
}
.post-image .add-to-basket {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  right: 20px;
  top: 20px;
  z-index: 1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.post-image .add-to-basket:hover {
  background: #eee;
}
.post-image .add-to-basket img {
  width: 25px;
}

.rent-item:hover .add-to-basket {
  opacity: 1;
  visibility: visible;
  transition: 0.2s ease-in-out;
}

@media (min-width: 960px) {
  .page-content .uk-width-1-3\@m {
    width: calc(33.3222259247% + 40px);
  }
  .page-content .uk-width-1-3\@m input {
    padding-left: 10px;
  }
}
@media (min-width: 960px) {
  .page-content .uk-width-2-3\@m {
    width: calc(66.6444518494% - 40px);
  }
  .page-content .uk-width-2-3\@m input {
    padding-left: 10px;
  }
}
.add-to-basket-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-to-basket-btn img {
  width: 20px;
  margin-left: 10px;
}

.remove-list-item span {
  display: none;
}

@media (max-width: 1200px) {
  .basket-inside .list .item {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .basket-inside .list .item .title-part {
    width: calc(100% - 460px);
  }
  .basket-inside .list .item .date, .basket-inside .list .item .price, .basket-inside .list .item .counter {
    margin-right: 0;
  }
  .basket-inside .list .item .price {
    flex: unset;
    width: 100%;
    margin-bottom: 20px;
  }
  .basket-inside .list .item .counter {
    margin-top: -5px;
    margin-bottom: 20px;
  }
  .basket-inside .list .item .remove-list-item {
    background: #ff0000 !important;
    border: none;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    padding: 10px 15px;
    font-family: Quicksand;
  }
  .basket-inside .list .item .remove-list-item img {
    display: none;
  }
  .basket-inside .list .item .remove-list-item span {
    display: block;
  }
}
@media (max-width: 850px) {
  .basket-inside .list .item .title-part {
    width: calc(100% - 120px);
    margin-right: 0;
  }
  .basket-inside .list .item .date {
    margin-top: 0px;
  }
  .basket-inside .list .item .counter {
    margin-top: 25px;
    margin-left: 15px;
  }
}
@media (max-width: 600px) {
  .basket-inside {
    padding: 20px;
  }
  .basket-inside .list .item .date, .basket-inside .list .item .counter {
    width: 100%;
  }
  .basket-inside .list .item .date, .basket-inside .list .item .counter {
    margin-top: 15px;
  }
  .basket-inside .price {
    margin-bottom: 10px !important;
    text-align: center !important;
  }
  .basket-inside .remove {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 450px) {
  .basket-inside .total {
    text-align: center;
  }
  .basket-inside .bottom-buttons {
    flex-wrap: wrap;
    padding-top: 10px !important;
  }
  .basket-inside .bottom-buttons > * {
    width: 100%;
    margin-left: 0 !important;
  }
  .basket-inside .bottom-buttons button {
    justify-content: center;
    margin-top: 10px;
  }
}
@media (max-width: 959px) {
  .section-basket {
    padding-top: 50px;
  }
  .section-basket .section-title {
    margin-bottom: 20px;
  }
}
.section-category .category-item__box {
  padding: 80px 20px 30px;
}

.section-category .category-item__box .category-item__icon {
  position: relative;
  width: 160px;
  margin: 0 auto;
}

.section-category .category-item__box .category-item__icon:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 16px;
  background: #7a1e01;
  border-radius: 5px;
}

.section-category .category-item__box .category-item__icon .triangle {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  border-bottom: 5px solid transparent;
  position: relative;
  filter: drop-shadow(0px 5px 3px rgba(0, 0, 0, 0.3));
  margin-bottom: 40px;
}

.section-category .category-item__box .category-item__icon .triangle:before {
  position: absolute;
  content: "";
  width: calc(100% + 5px);
  height: 5px;
  left: -33px;
  top: 47px;
  background: #7a1e01;
  transform: rotate(120deg);
  z-index: 1;
  border-radius: 5px;
}

.section-category .category-item__box .category-item__icon .triangle:after {
  position: absolute;
  content: "";
  width: calc(100% + 5px);
  height: 5px;
  right: -33px;
  top: 47px;
  background: #7a1e01;
  transform: rotate(60deg);
  border-radius: 5px;
}

.section-category .category-item__box .category-item__icon img {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 100%;
  object-fit: cover;
  height: 100%;
  box-sizing: border-box;
}
.logo-img {
	height: 60px;
}
.logo-footer {
	height: 110px;
}
.product_image {
	height: 250px;
}
.rent-item__title a{
  white-space: normal;
  font-size: 16px;
}
.rent-item__body {
  padding: 20px;
}
.rent-item__media a img{
  object-fit: cover;
}
.rent-item__box{
  box-shadow: 0px 2px 9px rgba(0,0,0,0.2);
}
.blog-item__body{
  padding: 25px;
}
.blog-item__info{
  margin-bottom: 0;
}
.blog-item__box{
  height: 100%;
}
.continue-shopping-first-block, .continue-shopping-second-block{
	padding-top: 40px;
}
.continue-shopping-second-block{
	display: none;
}
.basket-inside .bottom-buttons .checkout-btn{
	justify-content: center;
}
@media (max-width: 450px){
	.basket-inside .bottom-buttons .checkout-btn{
		margin-top: 20px;
	}
}
/*# sourceMappingURL=new.css.map */
