#global-preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.global-preloader__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.736);
}
.empty-basket {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 30vh;
}
.address-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
.global-preloader__spinner {
	width: 60px;
	height: 60px;
	border: 6px solid #f3f3f3;
	border-top: 6px solid #e3000f;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index: 10000;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.header__indicators.left {
    justify-content: center;
}

.menu__item.parent {
    position: relative;
}

.menu__item.parent svg {
    transform: rotate(270deg);
    color: #bfbfbf;
    fill: currentColor;
    position: absolute;
    right: 12px;
    top: 12px;
}

.menu__item.parent .main-menu__submenu {
    display: none;
    position: absolute;
    top: -7px;
    left: 200px;
}

.menu__item.parent:hover > .main-menu__submenu {
    display: block;
}

.add-to-basket-success {
    position: fixed;
    top: 100px;
    right: -400px;
    display: flex;
    align-items: center;
    justify-content: end;
    background: #e3000f;
    padding: 10px 0 10px 10px;
    border-radius: 2px;
    z-index: 99;
}

.add-to-basket-success h5 {
    margin: 0 10px;
    color: white;
    font-weight: 400;
}

.js-form-success {
    display: none;
}

.js-form-error {
    display: none;
    color: red;
}

.dashboard__address {
    text-align: center;
    width: 100%;
}

@media (max-width: 1200px) {
    .form-check .form-check-input {
        margin: 5px 0 0 0 !important;
    }

    .add-to-basket-success {
        top: 70px;
    }
}

@media (max-width: 768px) {
    .product-card__image {
        height: 30px !important;
    }

    .product-card__image .image__tag {
        display: none !important;
    }
}