* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

:root {
    --body-background-color: #ffffff;
    --wrapper-background-color: #fafafa;
    --menu-text-color: rgb(226 15 15 /75%);
    --menu-text-color-hover: rgb(226 15 15);
    --productcard-background-color: #fff;
    --catalog-item-background-color: #fff;
    --order-window-background-color: #fff;
    --link-text-color: rgb(119 15 15 /1);
    --link-text-color-hover: rgb(159 15 15 /1);
    --price-text-color: #8d0f0f;
    --price-background-color: rgb(194 193 190);
}

body {    
    background-color: var(--body-background-color);
    
}

body.locked {
    overflow: hidden;
}

.wrapper {    
    background-color: var(--wrapper-background-color);
    margin:0 auto;
}

a {
    cursor: pointer;
	color: var(--link-text-color);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: var(--link-text-color-hover);
    text-shadow: 1px 1px 0px  black;
    
}

/* Иконка корзины и текст */

/* Общий Блок-контейнер */
.ShortOrderCart{
    position: fixed !important;
    display: flex;
    top: 10px;
    Left: calc( 15% - 20px);
    z-index: 14;    
}

/* Кнопочка с корзинкой */
.ShortOrderCart__button {
    cursor: pointer;    
    height: 66px;
    width: 66px;
    background-color: #fff;
    border: 4px double #999;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    z-index: 13;   
}

.ShortOrderCart__button:hover {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.ShortOrderCart__button--img {
    position: relative;
    top: 8px;
    left: 3px;
    width: 47px;
    height: 45px;
    background-image: url(nav_img/korzina.png);
    z-index: 14;  

}

.ShortOrderCart__button--img.full {
    background-image: url(nav_img/korzina_full.png);
}


/* Блок за который прячется блок текста */
.ShortOrderCart__text {
    position: relative;
    left: -45px;
    top: 0px;
    width: 250px;
    height: 65px;
    overflow: hidden;
    z-index: 12;
    
}  

/* Выезжающий Блок текста */
.ShortOrderCart__text--box {
    position: relative;
    left: 0px;
    top: 5px;
    width: 245px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.5);;
    border-top: 4px double #999;
    border-bottom: 4px double #999;
    border-right: 4px double #999;
    border-top-right-radius: 33px;
    border-bottom-right-radius: 33px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    z-index: 11;
    transition: all 0.7s ease;
    backdrop-filter: blur(5px);
    
}

/* Спрятанный Блок текста */
.ShortOrderCart__text--box.hidden {
    left: -200px;
    transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
}

/* Сам текст тут */
#ShortCart {
    position: relative;
    top: 4px;
    left: 54px;
    user-select: none;
}



/* Шапка сайта. Лого и меню */

.header {
    display: block;   
}

.header__logo {
	cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;    
}

.header__nav {
    user-select: none;
    width: 100%;
    position: relative;
    display: block;
    float: none;
}

.menu__items {
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu__items--item {
    list-style: none;
	margin: 0 5px;
    padding: 5px;  	
}

.menu__items--item  .menu__link {
	cursor: pointer;
	color: var(--menu-text-color);
	text-decoration: none;
	font-size: 1.3em ;
    text-shadow: 1px 1px 1px black;
    letter-spacing: 2px;
    font-weight: 500;    

}

.menu__items--item  .menu__link:hover {
	color: var(--menu-text-color-hover);
    text-shadow: 1px 1px 0px  black;
}

/* Тело сайта */
.sitebody {
    width: 100%;
    margin:0 auto;
     
}

.sitebody H1{
    text-align: center; 
    font-size: 1.5em ;
}

.sitebody H2{
    text-align: center; 
    font-size: 1.2em ;
}



/* Элементы главной страницы */


.MainPage {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.MainPage p{
    padding: 10px;
    text-align: center; 
    font-size: 1em ;
    font-weight: 600;
}

.ProductCategory {
    position: relative;
    display: block;
    width: 280px;
    height: 290px;
    text-align: center;
    margin-bottom: 10px;    
}


.ProductCategory__item {
    padding-top: 5px;
    margin: auto;
    position: relative;
    user-select: none;
    width: 250px;
    height: 280px;
    cursor: pointer;
    background-color: var(--productcard-background-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.ProductCategory__item:hover {
    box-shadow: 6px 6px 3px rgba(0, 0, 0, 0.5);
    transform-origin: center;
    transform: scale(1.05) rotate(1deg);
    -webkit-transform: scale(1.05) rotate(1deg);
    -moz-transform: scale(1.05) rotate(1deg);
    -ms-transform: scale(1.05) rotate(1deg);
    -o-transform: scale(1.05) rotate(1deg);
}

.ProductCategory__img {
    line-height: 235px;
}

.ProductCategory__img img {
    position: relative;
    max-width: 220px;
    max-height: 220px;
    vertical-align: middle;
    
}

/* Страница товаров в категории */

.MainProductArticle {
    display: grid;
    place-items: center;
    align-items: start;
    margin-top: 10px;
    grid-template-areas: "Image  Article";
    grid-template-columns: 35% 65%;

}

.MainProductArticle__img {
    grid-area: Image;
    width: 300px;
    height: 300px; 
}

.MainProductArticle__img img {
    max-width: 300px;
    max-height: 300px;
    position: relative;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
   
}

.MainProductArticle__article {
    grid-area: Article;
    width: 90%;
    text-align:justify;
}

.MainProductArticle__article H2 {
    margin-bottom: 10px;
}

.ProductArticle:nth-last-child(1) {
    margin-bottom: 30px;
}

.ProductArticle {
    width: 95%;
    margin: 0 auto;
    margin-top: 20px;
    display: grid;
    grid-template-areas: "Image  Article Footer" ;
    grid-template-columns: 35% 45% 20%;
    place-items: center;
    align-items: start;
    
    background-color: var(--productcard-background-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.ProductArticle__img {
    grid-area: Image;
    width: 300px;
    height: 300px;   
}

.ProductArticle__img img{
    max-width: 300px;
    max-height: 300px;
    position: relative;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.ProductArticle__price {
    grid-area: Image;
    width: 300px;
    height: 300px;
    position: relative;
    user-select: none;
}

.ProductArticle__price--container {
    position: relative;
    top: 260px;
    left: 30px; 
    width: 70px;
    height: 33px;
    padding: 5px;
    background: var(--price-background-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5),
    0px 0px 20px rgba(255, 255, 255, 1);
    opacity: 0.85;
    backdrop-filter: blur(5px);
}


.ProductArticle__article {
    grid-area: Article;
    align-self: center;
    justify-self: center;
    width: 90%;
    text-align:justify;
}

.ProductArticle__article H2 {
    padding-top: 20px;
    margin-bottom: 10px;
}

.ProductArticle__link{
    align-self: center;
    grid-area: Footer;
    padding-top: 20px;
    padding-bottom: 20px;
}


/* Страница контактов */

.Contacts, .About {
    padding: 10px;
}
.Contacts__info, .About__us {
    margin-top: 10px;
    text-align:justify; 
}

.Social {
    display: flex;
    user-select: none;
    flex-direction: row;
    justify-content: center;
}

.Social__item {
    width: 120px;
    margin: 0 auto;
    text-align: center;
}

.Social__item img {
    cursor: pointer;
}

.Social__item img:hover{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}


/* Контейнер для Карточек товаров с каталогами */
.Catalogs {
    margin:0 auto;
    width: 95%;
}

.Catalogs p{
    text-align: center; 
    font-size: 1em ;
    font-weight: 400;
}

/* Карточки товаров */

.ShortProductCard {
    position: relative;
    user-select: none;
    display: grid;
    grid-template-areas: "Header  Header"
                         "Image  Catalogs" 
                         "Footer Catalogs";
    grid-template-columns: 1fr 1fr;
    place-items: center;
    background-color: var(--productcard-background-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}

.ShortProductCard__header {
    grid-area: Header;
    place-items: center;
    font-size: 1em;
    margin-bottom: 10px;
}

.ShortProductCard__img {
    grid-area: Image;
    height: 200px;
    
}

.ShortProductCard__img img{
    max-width: 280px;
    max-height: 200px;
   
}

.ShortProductCard__description {
    grid-area: Image;
    width: 280px;
    height: 200px;
    display: none;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(5px);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
    
}

.ShortProductCard__footer {
    position: relative;
    grid-area: Footer;
    width: 100%;
}

.ShortProductCard__price{
    position: relative;
    left: 25%;
    top: -15px;
    width: 70px;
    height: 33px;
    padding: 5px;
    background: var(--price-background-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.ShortProductCard__price--text {
    position: relative;
    text-align: center;
    font-size: 1.2em;
    font-weight: 900;
    color: var(--price-text-color);
    
}

.ShortProductCard__price--rub { 
    font-weight: 300;
	line-height: 5px;
	width: 0.4em;
    color: #000;
   	border-bottom: 1px solid #000; 
	display: inline-block;
} 

.ShortProductCard__button{
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    padding: 5px;
    width: 67px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.ShortProductCard__button:hover {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}


.ShortProductCard__Catalogs {
    grid-area: Catalogs;
    margin-bottom: 20px;
    
          
}

.ShortProductCard__Catalogs--link {
    cursor: pointer;
	color: var(--link-text-color);
    text-decoration: none;
}

.ShortProductCard__Catalogs--link:hover {
    color: var(--link-text-color-hover);
    text-shadow: 1px 1px 0px  black;
    
}

/* Каталоги картинок */
.Catalog {
    position: relative;
    padding-bottom: 75px;
}
.Catalog__ProductName H1 {
    text-align: center;
    font-size: 1.5em ;    
}

.Catalog__CatalogName H2 {
    text-align: center;
    font-size: 1.3em ;
}

.Catalog__ProductPrice {
    text-align: center;
    font-weight: 500;
    font-size: 1.2em;
    padding-bottom: 10px;
}

.Catalog__Items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    justify-items: center;
    gap: 10px;

}

.Catalog__Items--item {
    display: grid;
    width: 140px;
    padding: 10px;
    cursor: pointer;
    background-color: var( --catalog-item-background-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 1em ;
}

.Catalog__Items--item img{
    margin: auto;
    cursor: pointer;
    max-width: 90%;
    
}

.Catalog__Items--item img:active {
	max-width: none;
	position: fixed;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
	float:none;
	border: 10px solid white; 
	background-color: black;
    border-radius: 5px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.4);
}

.Catalog__Items--item.rotateminus img:active {
	transform: translate(-50%, -50%) rotate(-90deg);
	-webkit-transform: translate(-50%, -50%) rotate(-90deg);
	-moz-transform: translate(-50%, -50%) rotate(-90deg);
	-ms-transform: translate(-50%, -50%) rotate(-90deg);
	-o-transform: translate(-50%, -50%) rotate(-90deg);
}

.Catalog__Items--item.rotateplus img:active {
	transform: translate(-50%, -50%) rotate(90deg);
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	-moz-transform: translate(-50%, -50%) rotate(90deg);
	-ms-transform: translate(-50%, -50%) rotate(90deg);
	-o-transform: translate(-50%, -50%) rotate(90deg);
}

.Catalog__Items--bottom {
    user-select: none;
    display: grid;
    align-content : end;
    
}

.Catalog__Items--inputZone {
    display: flex;
    flex-direction: row;
    justify-content: center; 
}

.Catalog__Items--input {
    padding: 3px;
    width: 50px;
    height: 25px;
    
}
    
.Catalog__Items--button {
    cursor: pointer;
    margin-left: 3px;
    width: 67px;
    padding: 2px;
}
    
/* Кнопочка "Назад" */
.ButtonBack {
    cursor: pointer;  
    position: fixed !important;
    top: 10px;
    right: calc( 15% - 20px);
    height: 66px;
    background-color: #fff;
    border: 4px double #999;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.ButtonBack:hover {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);

}

.ButtonBack img {
    position: relative;
    top: 9px;
}

/* Скрытая кнопка "Назад" */
.ButtonBack.hidden {
    display: none !important;
}

/* Подвал сайта */

.Footer {
    display:flex;
    margin:0 auto;
    
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
}

.Footer__item {
    margin-top: 10px;
    margin-bottom: 20px;
    
}


/* Бланк заказа и его таблица */

.OrderWindow {
    z-index: 10;
    display: none;
    top: 80px;
    left:50%;
    transform: translateX(-50%);
    position: fixed;
    background-color: var(--order-window-background-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2),
                0px 0px 1px 1000px rgba(0, 0, 0, 0.8);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    overflow: auto;
    max-height: calc(100vh - 120px);    
}

.OrderWindow H2{
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.4em;
}

.OrderWindow p {
    padding: 20px;
    justify-content: center;
    text-align: center;
    font-size: 1.2em ;
}

.OrderButtons {
    width: fit-content;
    margin: 0 auto;
}

.OrderButtons__button{
    margin-left: 10px;
    margin-right: 10px;
    width: 66px;
    height: 66px;
    display: inline-block;
    cursor: pointer;
    border: 4px double #999;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.OrderButtons__button:hover {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);

}

.OrderButtons__button img {
    position: relative;
    width: 42px;
    height: 36px;
    top: 6px;
    left: 6px;
}

.OrderButtons__button--text {
    font-size: 10px;
    text-align: center;
    top: -2px;

}

.CloseButton{
    width: 25px;
    height: 25px;
    position: absolute;
    top: 4px;
    right: 4px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.OrderTable {
    width: 95%;
    margin: 0 auto;
    padding: 0;
	border: 0;
	border-spacing: 0;
    padding-bottom: 20px;
    font-size: 0.95em;
}

.OrderTable td {
    padding: 0;
	border-spacing: 0;
	border-collapse: collapse;
	empty-cells: show;
	border-width: 1px;	
	border-style:solid;
	border-color: black;
	text-align: center;
}


/* Раскрасим таблицу */

/* Нечётные строки */
.OrderTable tr:nth-child(even) {
    background: #ece7e7;
}
/* Чётные строки */
.OrderTable tr:nth-child(odd) {
    background:#fafafa;
}
/* Первая строка */
.OrderTable tr:first-child {
    background: #d6c1c1;
}
/* Последняя строка */
.OrderTable tr:last-child {
  background: #dad0d0;
}

.DeleteButton {
    position: relative;
}

.DeleteButton img {
    position: relative;
    top: 2px;
    cursor: pointer;
}


/* Форма отправки */
.OrderForm {
    display: none;
    z-index: 10;
    top: 80px;
    left:50%;
    transform: translateX(-50%);
    position: fixed;
    background-color: var(--order-window-background-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2),
                0px 0px 1px 1000px rgba(0, 0, 0, 0.8);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    overflow: auto;
    max-height: calc(100vh - 120px);
    padding-bottom: 20px;
}

.OrderForm  H2{
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.4em;
}

.OrderForm  p {
    padding: 10px;
    justify-content: center;
    text-align: center;
    font-size: 1.2em ;
}

.OrderForm__inputform {
    width: fit-content;
    position: relative;
    margin: 0 auto;
    justify-content: center;
}

.OrderForm__table {
    padding-bottom: 20px;
}

.OrderForm__table td {
    height: 30px;
    padding: 2px;
}

.OrderForm__table img {
    position: relative;
    top: 2px;
    width: 20px;
    height: 20px;
}

/* Адаптив для больших экранов */

@media all {
    body {    
        overflow-y: scroll;
        overflow-y: overlay;
    }
    
    .wrapper {  
     width: 90%;
     max-width: 1200px;
    }

    .header__logo {
        width: 850px;
        height: 61px;
        background-image: url(logo.png);
       
    }
   
    .OrderWindow {
        width: 88%;
        max-width: 1200px;
    }


}

/* Адаптив для средних экранов */

@media (max-width: 992px) {
    body {    
        overflow-y: scroll;
        overflow-y: overlay;
    }
  
    .wrapper {          
        width: 92%;
        max-width: 992px;
    }

    .ShortOrderCart{  
        Left: 5%;        
    }

    .ButtonBack {
        right: 5%;
    }

    .header__logo {
        width: 650px;
        height: 47px;
        background-image: url(logo.png);
    }
    
      
    .OrderWindow {
        width: 95%;
        max-width: 992px;
    }
    
    .MainProductArticle {
        grid-template-areas: "Image" "Article";
        grid-template-columns: 1fr;
    }
    
    .ProductArticle {
        grid-template-areas: "Image" "Article" "Footer";
        grid-template-columns: 1fr;
        
    }

}

/* Адаптив для мобилок */

@media (max-width: 767px) {
 
    .wrapper {        
        width: 100%;
        max-width: none;

    }

    .header__logo {
        width: 320px;
        height: 40px;
        background-image: url(logo_small.png);
       
    }

    .ShortOrderCart{  
        top: calc( 100vh - 70px);
        Left: 5px;        
    }

    .ShortProductCard__price{
        left: 10%;
    }

    .ButtonBack {
        top: calc( 100vh - 70px);
        right: 20px;
    }

    .menu__items--item  .menu__link {
        font-size: 1.3em;

    }

    .MainProductArticle {
        grid-template-areas: "Image" "Article";
        grid-template-columns: 1fr;
    }
    
    .ProductArticle {
        grid-template-areas: "Image" "Article" "Footer";
        grid-template-columns: 1fr;
        
    }
     
      
    .menu__items--item, .ProductCard__Catalog--link {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .Footer__item {
        margin-bottom: 75px;
        
    }
    

    .Catalogs {
        width: 100%;
    }

    .ShortProductCard {
        grid-template-areas: 
        "Header"
        "Image"
        "Footer"
        "Catalogs";
        grid-template-columns: 1fr;
        
    }

   
    .Catalog__Items--item img:active {
        max-width: 320px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .OrderWindow {
        top: 5px;
        width: 100%;
        max-height: calc(100vh - 80px);
        
    }
}