.sidecart {
    position: fixed;
    top: 12rem;
    right: 0;
    bottom: 0;
    background-color: #fff;
    width: 40rem;
    z-index: 500;
    overflow-y: auto;
}


.sidecart .sidecart__inner {

}
.sidecart .sidecart__title {

}
.sidecart .sidecart__content {
    
}

.sidecart .order-items {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}
.sidecart .order-items .product-items {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.sidecart .order-items .product-item {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: .1rem solid rgba(0, 0, 0, .12);
}
.sidecart .order-items .product-item:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
.sidecart .order-items .product-item .product-item__content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
}
.sidecart .order-items .product-item .product-item__image-wrap {
    width: 10rem;
    height: 10rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 2rem;
}
.sidecart .order-items .product-item .product-item__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sidecart .order-items .product-item .product-item__details {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    flex-shrink: 1;
}
.sidecart .order-items .product-item .product-item__details .product-item__title {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 700;
    display: block;
}

.sidecart .order-items .product-item .product-item__details .product-item__price-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.2rem;
    gap: .6rem;
    width: 100%;
}

.sidecart .order-items .product-item .product-item__details .product-item__price {
    background-color: #fff;
    height: 4rem;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    border-radius: 20rem;
}
.sidecart .order-items .product-item .product-item__details .product-item__price .amount {
    font-size: 1.4rem;
    font-weight: 700;
}
.sidecart .order-items .product-item .product-item__details .product-item__price .amount bdi {
    
}

.sidecart .order-items .product-item .product-item__details .product-item__quantity {
    display: flex;
    align-self: flex-start;
    align-items: center;
    gap: .4rem;
}
.sidecart .order-items .product-item .product-item__details .product-item__quantity .quantity {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: #fff;
    border-radius: 20rem;
    overflow: hidden;
    position: relative;
    height: 4rem;
    padding: .4rem;
}
.sidecart .order-items .product-item .product-item__details .product-item__quantity .quantity .input-text {
    width: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 3.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    -moz-appearance:textfield;
    flex-shrink: 0;
}
.sidecart .order-items .product-item .product-item__details .product-item__quantity .quantity .input-texty::-webkit-outer-spin-button,
.sidecart .order-items .product-item .product-item__details .product-item__quantity .quantity .input-text::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.sidecart .order-items .product-item .product-item__details .product-item__quantity .quantity .input-text-change {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .07);
    font-size: 1.6rem;
    cursor: pointer;
    flex-shrink: 0;
}
.sidecart .order-items .product-item .product-item__details .product-item__quantity .quantity .input-text-change:before {
    font-family: 'Fontello';
}
.sidecart .order-items .product-item .product-item__details .product-item__quantity .quantity .input-text-minus {

}
.sidecart .order-items .product-item .product-item__details .product-item__quantity .quantity .input-text-minus:before {
    content: '\E819';
}
.sidecart .order-items .product-item .product-item__details .product-item__quantity .quantity .input-text-plus {

}
.sidecart .order-items .product-item .product-item__details .product-item__quantity .quantity .input-text-plus:before {
    content: '\E818';
}
.sidecart .order-items .product-item .product-item__details .product-item__quantity .input-text-remove {
    background-color: #FC4045;
    position: relative;
    border-radius: 20rem;
    color: #fff;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
}
.sidecart .order-items .product-item .product-item__details .product-item__quantity .input-text-remove:before {
    content: '\E82E';
    font-family: 'Fontello';
}

.sidecart .order-list .order-subtotal {
    border-top: .1rem solid rgba(0, 0, 0, .12);
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidecart .order-list .order-subtotal .order-subtotal__label {
    font-size: 1.6rem;
    font-weight: 700;
}
.sidecart .order-list .order-subtotal .order-subtotal__value {
    font-size: 1.6rem;
    font-weight: 700;
}






























.footer {
    position: relative;
    background-color: #EEE7D3;
    width: 100%;
}
.footer.floating {
    position: fixed;
    left: 0;
    top: 10rem;
    right: 0;
    bottom: 0;
    z-index: 600;
    pointer-events: none;
    opacity: 0;
    transition: .3s;
    transform: translateY(10rem) scale(1.2);
    background-color: #EBE8ED;
}
.footer.floating.resize {
    top: 7rem;
}
.footer.floating.on {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
}
.footer.floating .copyrights {
    display: none;
}
.footer .footer__content {
    padding: 10rem 8rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10rem;
}
.footer .footer-panel {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 3.6rem;
}
.footer .block {
    width: 100%;
}

.footer .block__title {
    font-size: 2.4rem;
    font-weight: 700;
    display: block;
}
.footer .block__content {
    margin-top: 3.6rem;
}



.footer .block.contacts {

}
.footer .contacts .contact-items {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    gap: .6rem;
}
.footer .contacts .contact-item {
    display: flex;
    align-items: stretch;
}
.footer .contacts .contact-item .content {
    display: flex;
    align-items: center;
}
.footer .contacts .contact-item .link {
    
}
.footer .contacts .contact-item .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 20rem;
    background-color: #fff;
}
.footer .contacts .contact-item .icon {
    font-size: 2rem;
    transition: .3s;
}
.footer .contacts .contact-item .icon:before {
    font-family: 'Fontello';
}
.footer .contacts .contact-item.address .icon:before {
    content: '\f031';
}
.footer .contacts .contact-item.working-hours .icon:before {
    content: '\e817';
}
.footer .contacts .contact-item.phone .icon:before {
    content: '\e80c';
}
.footer .contacts .contact-item.whatsapp .icon:before {
    content: '\f232';
}
.footer .contacts .contact-item.instagram .icon:before {
    content: '\f16d';
}
.footer .contacts .contact-item.telegram .icon:before {
    content: '\f2c6';
}
.footer .contacts .contact-item.email .icon:before {
    content: '\f0e0';
}
.footer .contacts .contact-item .text {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 800;
    transition: .3s;
    line-height: 1.3;
    margin-left: 1.2rem;
}


.footer .block.nav {
    
}
.footer .block.nav .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem 0;
}
.footer .block.nav .nav-menu .menu-item {
    display: block;
}
.footer .block.nav .nav-menu .menu-item a {
    display: block;
    line-height: 1.3;
    font-size: 1.4rem;
}
.footer .block.nav .nav-menu .menu-item.current-menu-item  a {
    color: inherit;
}


.footer .block.nav .nav-catalog {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    width: 100%;
    gap: .6rem;
}
.footer .block.nav .nav-catalog .nav-item {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1.2rem;
    transition: .3s;
}
.footer .block.nav .nav-catalog .nav-item__img-wrap {
    position: relative;
    overflow: hidden;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 20rem;
}
.footer .block.nav .nav-catalog .nav-item__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.footer .block.nav .nav-catalog .nav-item__label {
    display: block;
    line-height: 1.3;
    font-size: 1.4rem;
    font-weight: 700;
}



.footer .block.map {
    width: 100%;
}
.footer .block.map .map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
}
.footer .block.map .map-wrapper iframe {

}






.copyrights {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.copyrights__item {
    display: flex;
    align-items: center;
    font-weight: 800;
    opacity: .3;
}
.copyrights__item.date {
    font-size: 2.4rem;
}

.copyrights__item.url {
    font-size: 1.6rem;
}