* {margin: 0; padding: 0; vertical-align: baseline; outline:0; box-sizing: border-box;}

:root {
    --global-red: #f84147;
    --global-black-60: #797878;
    --global-main-color: #7d79b485;
    --global-main-color-dark: #3b367f85;
    --global-main-color-dark-2: #19155585;
    --global-main-color-light: #7d7b9f85;
    --global-background-article: #f2f2f2;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: var(--global-background-article);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-center {
    text-align: center;
}

.flex-column {
    flex-direction: column;
}

.header__info {
    width: 395px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__info-phone {
    color: var(--global-main-color-dark-2);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.header__info-phone:hover {
    color: var(--global-main-color-dark-2);
}

.header__info-link {
    color: grey;
    text-decoration: none;
}

.header__info-link:hover {
    color: var(--global-main-color-dark-2);
    text-decoration: underline;
}

.header__info .telegram svg {
    fill: var(--global-main-color-dark);
}

.wrapper-column {
    flex-direction: column;
}

.bg-white {
    background-color: #fff;
}

.header__menu {
    width: 100%;
    background-color: var(--global-main-color-light);
}

.header {
    width: 100%;
    background: #fff;
    margin-bottom: 20px;
}

.header__logo-slogan {
    display: flex;
    align-items: center;
}

.logo {
    margin: 7px 0 10px 0;
}

.header__info-logo {
    display: none;
    text-decoration: none;
    color: var(--global-main-color-dark-2);
    font-weight: 500;
}

.nav {
    width: 320px;
    height: 55px;
    background-color: var(--global-main-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav__title {
    color: #fff;
} 

.nav__i-arrow {
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

#menu_btn {
    display: none;
    width: 33px;
    height: 32px;
    cursor: pointer;
    margin: 5px 0 0 20px;
}

#menu_btn span {
    display: block;
    width: 33px;
    height: 5px;
    background: #fff;
    margin: 5px auto;
    border-radius: 3px;
}

#menu_btn span:first-child {
    margin-top: 0;
}

.search {
    width: calc(100% - 350px);
    display: flex;
    padding: 0 20px;
    margin-left: 225px;
}

.search__form {
    width: 100%;
    display: flex;
}

.search__input {
    width: calc(100% - 80px);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    outline: none;
    border: 0;
    padding: 0 20px;
    height: 40px;
}

.search__btn {
    width: 80px;
    height: 40px;
    border: 0;
    background-color: var(--global-main-color);
    color: #fff;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.search__btn:hover {
    background-color: var(--global-main-color-dark-2);
}

.header__btns {
    width: 280px;
    display: flex;
    justify-content: space-between;
}

.header__btn {
    width: 80px;
    height: 55px;
    border: 0;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    position: relative;
}

#cartItemsCnt {
    display: none;
    position: absolute;
    top: 4px;
    right: 12px;
    background: #00a046;
    color: #fff;
    border-radius: 50%;
    padding: 1px 7px;
    font-size: 12px;
}

.header__btn:hover {
    background-color: rgba(1, 1, 27, 0.07);
    border-radius: 8px;
}

.header__btn-img {
    color: #fff;
}

.account-wrapper {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 54px;
    width: 140px;
    background: white;
    align-items: flex-start;
    padding: 20px;
}

.account-wrapper a {
    color: var(--global-main-color-dark-2);
    margin-bottom: 5px;
}

.account-wrapper a:hover {
    text-decoration: none;
}

#accountLoginedBtn {
    position: relative;
}

#accountLoginedBtn:hover .account-wrapper {
    display: flex;
    background: #fff;
    z-index: 1;
    -webkit-box-shadow: 10px 10px 25px -8px rgba(0, 0, 0, 0.53);
    -moz-box-shadow: 10px 10px 25px -8px rgba(0, 0, 0, 0.53);
    box-shadow: 10px 10px 25px -8px rgba(0, 0, 0, 0.53);
}

.header__nav-links {
    display: flex;
    padding-left: 0;
    margin: 0 auto;
}

.nav-link {
    position: relative;
}

.nav-link a,
.heading-link a {
    text-decoration: none;
    color: var(--global-main-color-dark-2);
    font-weight: 500;
}

.nav-link a:hover,
.heading-link a:hover {
    text-decoration: underline;
}

.nav-link__ul {
    display: none;
    list-style-type: none;
    background: #fff;
    z-index: 2;
    padding: 20px;
    -webkit-box-shadow: 10px 10px 25px -8px rgba(0,0,0,0.53);
    -moz-box-shadow: 10px 10px 25px -8px rgba(0,0,0,0.53);
    box-shadow: 10px 10px 25px -8px rgba(0,0,0,0.53);
}

.nav-link__ul-li {
    margin-bottom: 8px;
}

.nav-link:hover .nav-link__ul {
    display: block;
    position: absolute;
}

#overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

#signup-div {
	width: 630px;
	background: #fff;
	border-radius: 8px;
	padding: 30px;
	z-index: 9901;
	position: relative;
}

#orderFormWrapper {
	width: 1000px;
	background: #fff;
	border-radius: 8px;
	padding: 0 30px 30px;
	z-index: 9901;
	position: relative;
}

.order-form-modal {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.order-form-modal__header {
    font-size: 24px;
    font-weight: 500;
    border-bottom: 1px solid var(--global-main-color);
    padding: 10px 0;
    margin-bottom: 20px;
}

.order-form-modal__body {
    display: flex;
    flex-direction: column;
}

.order-form-modal__item {
    display: flex;
    margin-bottom: 30px;
}

.order-form-modal__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#order-form-modal__close {
    background-color: #f5f5f5;
    box-shadow: inset 0 0 0 1px #ebebeb;
    color: #3e77aa;
    border: none;
    border-radius: 8px;
    outline: none;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    transition-duration: .2s;
    transition-property: color, background-color, border-color;
    transition-timing-function: ease-in-out;
    cursor: pointer;
}

#order-form-modal__close:hover {
    background-color: #f5f5f5;
    color: #4096e3;
}

.order-form-modal__total {
    display: flex;
    align-items: center;
    background-color: #7d79b424;
    border: 1px solid var(--global-main-color-dark);
    border-radius: 8px;
    padding: 20px;
}

#formModalTotalSum {
    font-size: 27px;
    margin-right: 30px;
}

#makeOrderModalBtn {
    width: 230px;
    height: 40px;
    text-align: center;
    border: 0;
    background-color: var(--global-main-color-dark);
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    line-height: 40px;
    text-decoration: none;
}

#makeOrderModalBtn:hover {
    background-color: #19155585;
}

.order-form-modal__item img {
    width: 70px;
    height: 90px;
}

.order-form-modal__item-body {
    width: calc(100% - 70px);
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.order-form-modal__item-body-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-form-modal__item-remove {
    border: 0;
    outline: none;
    cursor: pointer;
    background: transparent;
}

.order-form-modal__item-body-footer {
    display: flex;
    padding: 0 30px;
    justify-content: center;
    align-items: center;
}

.order-form-modal__item-body-cnt {
    margin-right: 50px;
}

.order-form-modal__item-body-cnt input {
    border: 0;
    background: transparent;
    text-align: center;
    margin-left: 20px;
    font-size: 23px;
    width: 40px;
}

.order-form-modal__item-cnt-change-btn {
    border: 0;
    background: transparent;
    text-align: center;
    cursor: pointer;
    font-size: 30px;
}

.order-form-modal__item-sum {
    font-size: 23px;
}

#signup-div__close {
	width: 67px;
	height: 67px;
	display: block;
	position: absolute;
	top: 4px;
	right: -24px;
	cursor: pointer;
	color: var(--global-black-60);
    transform: rotate(45deg);
    font-size: 35px;
}

#signup-div__close:hover {
    color: var(--global-red);
}

.hidden {
    display: none;
}

svg {
    stroke: transparent;
    stroke-width: 0px;
}

#signup-div {

}

#signup-div__form {

}

.signup-header {
    margin-bottom: 30px;
}

#loginBtn, #regBtn {
    border: 1px solid var(--global-main-color);
    outline: none;
    background-color: #fff;
    cursor: pointer;
    padding: 10px 30px;
    width: 49%;
    text-align: center;
    color: var(--global-main-color-dark);
    font-weight: bold;
    border-radius: 3px;
}

#loginBtn.active, #regBtn.active {
    background-color: var(--global-main-color);
    color: #fff;
}

#loginBtn:not(.active):hover, #regBtn:not(.active):hover {
    background-color: var(--global-main-color-light);
    border: 1px solid var(--global-main-color-light);
    color: #fff;
}

#signup-content {

}

#signup-content label {
    width: 150px;
}

.form-row {
    margin-bottom: 20px;
}

#signup-content input {
    width: calc(100% - 155px);
    border: 1px solid var(--global-main-color-light);
    padding: 3px 5px;
    outline: none;
    border-radius: 3px;
}

#signup-content input:focus {
    border-color: var(--global-main-color);
}

#loginFormWrapper {

}

#loginForm, #regForm  {
    display: flex;
    flex-direction: column;
}

#loginFormBtn, #regFormBtn {
    border: 1px solid var(--global-main-color);
    outline: none;
    background-color: #fff;
    cursor: pointer;
    padding: 10px 30px;
    width: 260px;
    text-align: center;
    color: var(--global-main-color);
    margin: 0 auto;
    border-radius: 3px;
}

#loginFormBtn:hover, #regFormBtn:hover {
    background-color: var(--global-main-color-light);
    border: 1px solid var(--global-main-color-light);
    color: #fff;
}

.error {
    color: var(--global-red);
    font-size: 14px;
    text-align: center;
}

.tovar {
    width: 100%;
    margin-bottom: 100px;
}

.tovar__breadcrumbs {
    width: 100%;
    height: 50px;
    background: #fff;
    margin-bottom: 7px;
}

.tovar__main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.tovar__img {
    width: calc(40% - 3px);
}

.tovar__img img,
.tovar__img video {
    width: 100%;
}

.tovar__sidebar {
    width: calc(60% - 3px);
}

.tovar__sidebar-section {
    width: 100%;
    padding: 30px;
    margin-bottom: 6px;
    background-color: #fff;
}

.tovar__heading {
    font-weight: 500;
    margin-bottom: 20px;
}

.tovar__rating-code {
    display: flex;
    justify-content: space-between;
}

.tovar__rating {

}

.tovar__code {
    font-size: 14px;
    color: grey;
}

.price-buy-fav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-price {
    font-size: 36px;
    font-weight: 700;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
}

.sidebar-buy {

}

.buy-btn {
    width: 190px;
    height: 40px;
    border: 0;
    background-color: var(--global-main-color-dark);
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
}

.buy-btn:hover {
    background-color: #19155585;
}

.sidebar-fav {

}

.fav-btn {
    border: none;
    outline: none;
    background: none;
    color: #ffa900;
}

#userFavCnt {
    position: absolute;
    color: #fff;
    top: 7px;
    right: 20px;
    font-size: 12px;
}









.footer {
    width: 100%;
    min-height: 200px;
    background: var(--global-main-color-dark);
    margin-top: auto;
    color: #fff;
}

.footer__header {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.telegram {
    text-decoration: none;
    margin-right: 20px;
}

.footer .telegram {
    margin-right: 0;
}

.telegram svg {
    width: 40px;
    height: 40px;
}

.telegram svg:hover {
    transform: scale(1.1);
}

.footer .logo {
    margin-left: 70px;
}

.footer__phone {
    color:#fff;
    text-decoration: none;
}

.footer__phone:hover {
    color:#fff;
}

.footer__menu {
    width: 100%;
    padding: 20px 0;
}

.footer__menu-ul {
    width: 100%;
    display: flex;
    justify-content: center;   
}

.footer__menu-li {
    margin-right: 30px;
}

.footer__menu-li:last-child {
    margin-right: 0;
}

.footer__menu-link {
    color: #fff;
    text-decoration: none;
}

.footer__menu-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__copy {
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.footer__copy a, .footer__copy a:hover {
    color: #fff;
    text-decoration: none;
}

.div-center {
    margin: 50px auto;
    text-align: center;
}

/* category */
.tovars-list {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    padding: 0 30px 50px;
}

.tovars-list.slider {
    padding: 0;
}

.tovars-list__card {
    width: 250px;
    height: 500px !important;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #fff;
    display: flex !important;
    flex-direction: column;
    margin-right: 22.5px;
}

.owl-carousel {
    margin: 20px 0;
}

.owl-carousel .tovars-list__card {
    margin-right: 0 !important;
}

.tovars-list__card:nth-child(5),
.tovars-list__card:nth-child(10),
.tovars-list__card:nth-child(15),
.tovars-list__card:nth-child(20),
.tovars-list__card:nth-child(25),
.tovars-list__card:nth-child(30),
.tovars-list__card:nth-child(35),
.tovars-list__card:nth-child(40),
.tovars-list__card:nth-child(45),
.tovars-list__card:nth-child(50),
.tovars-list__card:nth-child(55),
.tovars-list__card:nth-child(60),
.tovars-list__card:nth-child(65),
.tovars-list__card:nth-child(75),
.tovars-list__card:nth-child(80),
.tovars-list__card:nth-child(85),
.tovars-list__card:nth-child(90),
.tovars-list__card:nth-child(95),
.tovars-list__card:nth-child(100) {
    margin-right: 0;
}

.tovars-list__card:hover {
    transform: scale(1.03);
}

.slider .tovars-list__card:hover {
    transform: none;
}

.tovars-list__card img {
    width: 248px;
    height: 330px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.tovars-list__card-title {
    color: #212529;
    text-decoration: none;
    margin: 20px auto;
}

.tovars-list__card-price {
    color: #f84147;
    margin: 0px auto;
    font-size: 27px;
}

.tovars-list__card-price-currency {
    font-size: 16px;
}
/* end category */

.h1 {
    width: 100%;
    padding: 10px 30px;
    margin-bottom: 20px;
}

.paginator {
    margin: 20px auto;
    display: flex;
}

.paginator a,
.paginator strong {
    text-decoration: none;
    margin-right: 20px;
    border: 1px solid #dbdbdb;
    padding: 10px 15px;
}

.paginator a:hover {
    border-color: var(--global-main-color);
    color: #000;
}

.paginator a {
    color: var(--global-main-color-dark-2);
}

.breadcrumbs {
    width: 100%;
    display: flex;
    list-style: none;
    padding: 10px 30px;
    margin: 20px 0 0;
}

.tovar__sidebar-section .breadcrumbs {
    padding: 0;
    margin: 0 0 10px 3px;
}

.breadcrumbs li {
    margin-right: 14px;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--global-main-color-dark);
    position: relative;
}

.breadcrumbs a:hover {
    text-decoration: underline;
    color: var(--global-main-color-dark-2);
}

.breadcrumbs a:after {
	content: '\/';
	display: block;
	position: absolute;
	color: #aaa1d1;
	top: -1px;
	right: -11px;
}

.breadcrumbs li:last-child a:after {
	content: '';
	display: none;
}

.checkout-wrapper {
    width: 100%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}

.checkout-user-info-heading {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.checkout-user-info-row {
    width: 70%;
    display: flex;
    margin-bottom: 20px;
}

.checkout-user-info-col {
    width: calc(50% - 10px);
    margin-right: 20px;
    display: flex;
    flex-direction: column;
}

.checkout-user-info-col-wide {
    width: 100%;
}

.checkout-user-info-col:last-child {
    margin-right: 0;
}

.checkout-user-info-col__label {

}

.checkout-user-info-col__input {
    padding: 3px 10px;
}

#checkoutAddress {
    min-height: 100px;
    padding: 10px;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.checkout-item {
    display: flex;
    margin-bottom: 20px;
    width: 70%;
}

.checkout-item__imglink {
    margin-right: 20px;
}

.checkout-item__img {
    width: 70px;
}

.checkout-item__body {
    width: calc(100% - 90px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-item__body-link {
    width: calc(100% - 220px);
    padding-right: 20px;
}

.checkout-item__body-price-cnt {
    width: 120px;
}

.checkout-item__body-price-total {
    width: 100px;
}

.checkout-items__footer {
    display: flex;
    justify-content: end;
}

#checkout-items__edit {
    border: 0;
    outline: 0;
    background-color: transparent;
    cursor: pointer;
    color: #3e77aa;
}

#btnCheckoutFinal {
    width: 300px;
    height: 50px;
    text-align: center;
    border: 0;
    background-color: var(--global-main-color-dark);
    color: #fff;
    font-size: 20px;
    border-radius: 8px;
    font-weight: 500;
    margin: 0 auto 10px;
}

#btnCheckoutFinal:hover {
    background-color: #19155585;
}

.checkoutError {
    color: red;
    width: 100%;
    text-align: center;
}

.checkoutError-tl {
    text-align: left;
    color: red;
}

.my-orders-heding {
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0;
}

.orders {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 30px 70px;
}

.order-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 10px;
}

.order-item__header {
    display: flex;
}

.order-item__header > * {
    width: 25%;
}

.order-item__body {
    display: flex;
    flex-direction: column;
}

.order-item__totalcnt {
    margin-right: 30px;
}

.order-item__it {
    display: flex;
    padding: 10px 0;
    align-items: center;
}

.order-item__it-imglink {
    margin-right: 30px;
}

.order-item__it-img {
    width: 50px;
}

.order-item__it-link {
    margin-right: 30px;
}

.order-item__it-price-cnt {
    margin-right: 30px;
}

.order-item__it-body {
    display: flex;
    flex-direction: column;
}

.myBtn {
    text-align: center;
    border: 0;
    outline: none;
    background-color: var(--global-main-color-dark);
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    line-height: 30px;
    padding: 0 30px;
}

.myBtn:hover {
    background-color: #19155585;
}

.recover-form {
    background-color: #fff;
    padding: 30px 50px;
}

#emailRecover {
    width: 260px;
    padding: 5px;
}

#recoverBtn {
    border: 1px solid var(--global-main-color);
    outline: none;
    background-color: #fff;
    cursor: pointer;
    padding: 10px 30px;
    width: 260px;
    text-align: center;
    color: var(--global-main-color);
    margin: 0 auto;
    border-radius: 3px;
}

#recoverBtn:hover {
    background-color: var(--global-main-color-light);
    border: 1px solid var(--global-main-color-light);
    color: #fff;
}

.msimilar-slider__wrapper .owl-nav {
    width: calc(100% - 10px);
    position: absolute;
    top: 230px;
    left: 5px;
}

.msimilar-slider__wrapper .owl-prev {
	display: block;
	position: absolute;
	left: 0;
	width: 45px;
	height: 44px;
	background: url('/img/sprite.png?ver=0.15') -123px -40px !important;
	cursor: pointer !important;
	outline: none;
}

.msimilar-slider__wrapper .owl-next {
	display: block;
	position: absolute;
	right: 0;
	width: 45px;
	height: 44px;
	background: url('/img/sprite.png?ver=0.15') -181px -40px !important;
	cursor: pointer !important;
	outline: none;
}


@media (max-width: 1420px) {
    .wrapper {
        width: 100%;
    }

    .logo {
        margin-left: 50px;
    }
    
    .search {
        margin-left: 20px;
    }

    .tovars-list__card {
        margin-right: 20px !important;
    }
}

@media (max-width: 1100px) {
    .logo {
        display: none;
    }

    .header__info {
        width: 100%;
        justify-content: space-around;
        padding: 5px 0;
    }

    .telegram {
        margin-right: 0;
    }

    .header__info-logo {
        display: block;
    }

    #menu_btn {
        display: block;
    }
    
    .header__nav-links {
        display: none;
        flex-direction: column;
    }

    .nav-link__ul {
        display: block;
        box-shadow: none;
        padding: 0 20px;
    }

    .footer__menu {
        width: auto;
    }

    .footer__menu-ul {
        flex-direction: column;
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

    .footer__menu-li {
        margin-right: 0;
        text-align: center;
    }

    .paginator a, .paginator strong {
        margin-right: 10px;
        padding: 0px 5px;
    }

    #orderFormWrapper {
        width: 100%;
    }

    .checkout-user-info-row,
    .checkout-item {
        width: 100%;
    }
}

@media (max-width: 850px) {
    .checkout-item__body {
        flex-direction: column;
        align-items: start;
    }

    .checkout-item__body-link {
        width: 100%;
        padding-right: 0;
    }

    .order-item__header {
        flex-direction: column;
    }

    .order-item__header > * {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .header__menu .wrapper {
        flex-wrap: wrap;
        padding: 10px;
    }

    .search {
        width: calc(100% - 75px);
    }

    .header__btns {
        width: 100%;
        justify-content: space-around;
        margin-top: 5px;
    }

    .header__btn {
        height: 30px;
    }

    .search__input {
        height: 30px;
        padding: 0 5px;
    }

    .search__btn {
        height: 30px;
        width: 70px;
    }

    .account-wrapper {
        top: 40px;
    }

    #signup-div {
        width: calc(100% - 20px);
    }

    .tovar {
        padding: 10px;
    }

    .tovar__main {
        flex-direction: column;
    }

    .tovar__img,
    .tovar__sidebar {
        width: 100%;
    }

    .price-buy-fav {
        flex-direction: column;
    }

    .price-buy-fav > div:not(:last-child) {
        margin-bottom: 20px;
    }

    .order-form-modal__footer {
        flex-direction: column;
    }

    #order-form-modal__close {
        margin-bottom: 20px;
    }

    .order-form-modal__item-body-footer {
        flex-direction: column;
    }

    .order-form-modal__item-body-cnt {
        margin-right: 0;
    }

    .breadcrumbs {
        padding: 10px;
        flex-wrap: wrap;
    }

    .breadcrumbs a {
        font-size: 14px;
    }
}

@media (max-width: 550px) {
    #signup-div {
        padding: 50px 10px 20px;
    }

    #signup-div__close {
        width: 30px;
        height: 30px;
        top: -3px;
        right: -10px;
    }

    .order-form-modal__item-body-header {
        flex-direction: column;
    }

    .order-form-modal__item-remove {
        width: 70px;
        margin: 20px 0 0 auto;
    }

    .order-form-modal__total {
        width: 100%;
        padding: 10px;
        flex-direction: column;
    }

    #formModalTotalSum {
        font-size: 20;
        margin-right: 20px;
    }

    #makeOrderModalBtn {
        width: 220px;
    }

    .checkout-user-info-row {
        flex-direction: column;
    }

    .checkout-user-info-col {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 450px) {
    #loginBtn, #regBtn {
        padding: 5px 20px;
    }

    #signup-content label {
        width: 130px;
        font-size: 13px;
    }

    .owl-nav {
        top: 545px !important;
    }
    
    .tovars-list__card {
        margin-right: 0 !important;
    }
}


.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

.owl-carousel .owl-stage-outer {
    padding-top: 30px;
}

.owl-carousel.owl-drag .owl-item {
    display: flex;
    justify-content: center;
}
