#root, body, html {
    width: 100%;
    min-height: 100vh;
    background-color: #f8f8f8;
    color: #a69895;
    font-size: 14px;
    line-height: 1.33;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

.footer {
    padding-top: 40px;
    padding-bottom: 15px;
    background-color: #fff;
	color: #70544f;
}

a {
    color: #70544f;
    text-decoration: none;
}

.navbar-brand {
	font-weight: 700;
	font-size: 1.5em;
	line-height: 40px;
}

.navbar-nav > li > a {
    /*line-height: 40px;*/
}

.site_header_1 {
	background-color: #fff;
    border-bottom: 3px solid #f8f8f8;
}

h4 {
    position: relative;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif, Helvetica, "Apple Color Emoji";
    font-weight: 700;
    color: #70544f;
    line-height: 1.33;
    white-space: pre-wrap;
}

.carousel {
	margin-bottom: 20px;
	margin-top: 20px;	
}

.carousel-inner {
}

.carousel-inner .item {
	height: 45vh;
	border-radius: 24px;
	background-color: #fff;
	
	color: red;
}

.carousel-inner .item>div {
	height: inherit;
	border-radius: 24px;
}

.radius24 {
	border-radius: 24px;
	background-color: #fff;
	padding: 20px;
	color: #70544f;
	margin-bottom: 20px;
	margin-top: 20px;
}

.carousel-inner .item>div h2 {
    font-size: 2em;
    color: white;
    background: black;
    opacity: 0.6;
	padding: 5px;
	display: inline-block;
	padding-left: 20px;
}

.cart .radius24 {
	margin-bottom: 10px;
	min-height: 200px;
}

.card+.radius24 {
	margin-top: 10px;
	
}

.view .radius24 {
	margin-bottom: 20px;
	height: 35vh;
}

.view .radius24 .h4 {
	font-size: 2em;
	color: white;
	display: inline-block;
}

.view .radius24 button {
	background: none;
	border: none;
	font-size: 1.5em;
	color: white;
}

.modal-content {
	font-size: 14px;
	color: #70544f;
	font-weight: normal;
	line-height: 1.33;
}

a.radius24 {
	display: block;
	font-weight: 500;
}

.padding20 {
	padding: 20px;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.menu .col-sm-4 {
	padding-right: 4px;
    padding-left: 4px;
}

.card img.radius24 {
	padding: 0;
	margin-top: 0;
}

.card {
	padding: 12px;
	margin-top: 10px;
}

.product-card__prices {
	font-size: 24px;
	font-weight: 500;
}

.product-card__prices .glyphicon-ruble {
	font-size: 18px;
	font-weight: 400;
}

.featurette-heading {
	font-size: 16px;
}

.product-card__name p {
	font-size: 14px;
	color: #9E9B98;
	height: 78px;
	overflow: hidden;
}

.card_image {
	height: 148px;
	overflow: hidden;
	border-radius: 24px;
	margin-bottom: 20px;
}

.menu-categories {
	padding: 10px 20px;
}

.affix {
    position: fixed;
    /*top:70px;
    width:228px;*/
  }
  
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

body {
	margin-top: 80px;
}

.navbar-header .basket-button {
	margin: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: 500;
}

.navbar-nav > li > .basket-button {
	margin: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: 500;
}

.exitbutton a {
	margin-top: 10px;
	margin-bottom: 10px;
}

.navbar-nav > li > a {
    margin-top: 10px;
	margin-bottom: 10px;
}

/* styles.css */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
 
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #cccccc;
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
 
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.scroll-top-wrapper {
    position: fixed;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	text-align: center;
	z-index: 99999999;
    background-color: #777777;
	color: #eeeeee;
	width: 50px;
	height: 48px;
	line-height: 48px;
	right: 30px;
	bottom: 30px;
	padding-top: 2px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.scroll-top-wrapper:hover {
	background-color: #888888;
}
.scroll-top-wrapper.show {
    visibility:visible;
    cursor:pointer;
	opacity: 1.0;
}
.scroll-top-wrapper i.fa {
	line-height: inherit;
}

.navbar-toggle .icon-bar {
    background-color: #5cb85c;
}

.product-card__name .featurette-heading {
	height: 42px;
	overflow: hidden;
}