.bodyOwner {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  margin-top: 20px;
  background-color: #165458;
  font-family: Arial, Helvetica, sans-serif;
}

.headerOwner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.logoOwner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logoOwner img {
  width: 30%;
  border: 1px solid #6d7a6c;
  padding: 3%;
}

.headerOwner {
  width: 100%;
  height: 100px;
  background-color: #242e31;
}
.headerOwner__btn {
  padding: 4px;
  margin: 10px;
  font-size: 14px;
  background-color: #ffffff;
  border-radius: 2px;
  border: none;
}
.headerOwner a {
  color: #866f20;
  text-decoration: none;
}

.wrapperForms {
  background-color: #242e31;
  padding: 4px;
}

#formAddItem {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

input,
#select {
  min-height: 20px;
  border-radius: 2px;
  background-color: #ffffff;
  font-size: 14px;
  width: 20%;
}

#select {
  min-height: 30px;
  width: 20%;
}

.sortBtns button {
  min-height: 40px;
  border: none;
  color: #5a5a5a;
  cursor: pointer;
  font-size: 10px;
  background-color: #ffffff;
  border-bottom: 1px solid #b9b9b9;
}

.arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup */
.popuptext {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.popup .popuptext {
  visibility: hidden;
  width: 8em;
  height: 6em;
  background-color: #ffffff;
  color: #9c9c9c;
  border: 1px solid lightgray;
  text-align: center;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  top: 38px;
  left: 2.8em;
  margin-left: -80px;
}

.popup .popuptext::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #b6b6b6 transparent transparent transparent;
}

.popup .show {
  visibility: visible;
  animation: fadeIn 0.2s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
::placeholder {
  font-size: 16px;
}

#addBtn {
  background-color: #96c77a;
  padding: 4px;
  cursor: pointer;
  width: 200px;
  height: 40px;
}

.containerCard {
  border: 2px solid #b3b3b3;
}

.card {
  background-color: #242e31;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 0.2fr 0.2fr 0.2fr 3fr;
  gap: 10px;
  margin-bottom: 2px;
}
.card img {
  width: 26%;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  padding: 6%;
}
.card .imgPic {
  width: 10em;
}

.category,
.title,
.price {
  background-color: #ffffff;
  color: #050505;
  border-radius: 2px;
  height: 20px;
  text-align: center;
  margin: 10px;
  padding: 4px;
  text-align: start;
  font-weight: bold;
}

.description {
  font-size: 18px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 2px;
  text-align: center;
  margin: 10px;
  margin-top: 10px;
  padding: 10px;
  text-align: start;
  inline-size: 310px;
  overflow-wrap: break-word;
  height: 60px;
}

.price {
  text-align: center;
  font-size: 20px;
}

#textarea {
  width: 382px;
  resize: none;
  border-radius: 2px;
  height: 80px;
  font-size: 18px;
}

.delete {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
}
.delete button {
  background-color: transparent;
  background-repeat: no-repeat;
  border: solid 1px white;
  cursor: pointer;
  padding: 6px;
  font-size: 18px;
}

.edit {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: #242e31;
}
.edit a {
  color: #ffffff;
  text-decoration: none;
  border: 1px solid white;
  padding: 4%;
}
.edit input {
  color: #077207;
  font-size: 18px;
  width: 6em;
}
.edit #update {
  font-size: 1em;
  font-weight: bold;
  width: 6em;
}

.itemPicLine {
  display: flex;
  width: 10%;
}

.header {
  color: #fff;
  display: block;
  max-height: 120px;
  background: linear-gradient(to top, transparent, #181818);
}
.header:hover {
  background-color: #000000;
  transition: 0.4s;
}
.header img {
  width: 9.4%;
  height: 9.4%;
}
.header__navBarTop button {
  background-color: transparent;
  border: none;
}
.header__navBarTop a {
  text-decoration: none;
  color: white;
}
.header__middle {
  display: flex;
  align-items: space-around;
  gap: 31.5%;
  padding-left: 5.5%;
  padding-top: 0.5%;
}
.header__middle__icons__right {
  display: flex;
  gap: 23px;
}
.header__middle__icons__right__bag {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.header__middle__icons__right .sign,
.header__middle__icons__right .bag {
  position: relative;
  bottom: 10px;
  font-size: small;
}
.header__middle__icons__left {
  position: relative;
  top: 1px;
  display: flex;
  gap: 3px;
}
.header__middle__icons__left__lang {
  position: relative;
  left: 10px;
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
}
.header__middle__icons__left .country {
  position: relative;
  bottom: 10px;
  font-size: small;
}
.header__middle__icons__left .lang,
.header__middle__icons__left .services {
  position: relative;
  bottom: 10px;
  font-size: small;
}
.header__middle__title {
  position: relative;
  bottom: 30px;
}
.header__navBarBottom {
  display: flex;
  justify-content: center;
}
.header__navBarBottom__navbar-nav {
  display: flex;
  justify-content: space-between;
  width: 55%;
  font-size: small;
  list-style: none;
  position: relative;
  font-weight: bold;
  letter-spacing: 2px;
}

.navBarSort {
  margin: 24px 0px;
}
.navBarSort__items {
  display: grid;
  grid-template-columns: 0.2fr 10fr 1fr 0.8fr 0.5fr 0.8fr;
  align-items: center;
}
.navBarSort__items .nav-item-left {
  padding-left: 2em;
  border-right: 1px solid lightgray;
  padding-right: 10px;
}
.navBarSort__items .nav-item-right {
  margin-left: 2em;
  border-right: 1px solid gray;
  cursor: pointer;
}

.sortPopUp {
  display: flex;
  justify-content: end;
  margin-right: 24px;
}

.showcase {
  right: 0;
  width: 100%;
  min-height: 62vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 6%;
  color: #ffffff;
}
.showcase h1 {
  font-size: 66px;
  font-weight: 300;
  padding-bottom: 30%;
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  object-fit: cover;
  opacity: 0.8;
  z-index: -2;
}

body {
  font-family: "Roboto", sans-serif;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0%;
  margin: 0;
  padding: 0;
}

.main {
  display: grid;
  grid-template-rows: repeat(2, 60vh);
  grid-template-columns: repeat(4, 24.8%);
  background-size: cover;
  background-repeat: no-repeat;
  padding-left: 1%;
  padding-right: 1%;
  gap: 3px;
}
.main__item {
  background-size: cover;
  cursor: pointer;
  background-repeat: no-repeat;
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 90%;
  line-height: 2;
}
.main__item .title {
  visibility: hidden;
}
.main__item .price {
  visibility: hidden;
}
.main__item .buy-now {
  visibility: hidden;
}
.main__item:hover {
  opacity: 1;
}
.main__item:hover .title {
  visibility: visible;
  color: #353535;
  font-weight: 300;
  font-size: 20px;
  padding-top: 2%;
}
.main__item:hover .price {
  visibility: visible;
  color: #7a7a7a;
  font-weight: 200;
  padding-bottom: 2%;
}
.main__item:hover .buy-now {
  visibility: visible;
}

.picDINAMO {
  background-image: url(https://media.gucci.com/style/DarkGray_Center_0_0_800x800/1569334504/609929_I1600_8489_001_100_0000_Light-G-Timeless-watch-40mm.jpg);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e6e6e6;
}
.picDINAMO:hover {
  background-image: url(https://media.gucci.com/style/White_South_0_160_316x316/1569334504/609929_I1600_8489_002_100_0000_Light.jpg);
  background-color: #ffffff;
  background-color: #ffffff;
}

.picAVATAR {
  background-image: url(https://media.gucci.com/style/DarkGray_Center_0_0_800x800/1634917510/681613_ICXA0_8489_001_100_0000_Light-G-Timeless-watch-38mm.jpg);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e6e6e6;
}
.picAVATAR:hover {
  background-image: url(https://media.gucci.com/style/White_South_0_160_316x316/1634917513/681613_ICXA0_8489_002_100_0000_Light.jpg);
  background-color: #ffffff;
}

.picREMBRANDT {
  background-image: url(https://media.gucci.com/style/DarkGray_Center_0_0_800x800/1634251528/692073_IC1A0_8521_001_100_0000_Light-Gucci-Tiger-G-Timeless-watch-38-mm.jpg);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e6e6e6;
}
.picREMBRANDT:hover {
  background-image: url(https://media.gucci.com/style/White_South_0_160_316x316/1634251529/692073_IC1A0_8521_002_100_0000_Light.jpg);
  background-color: #ffffff;
}

.picPICASSO {
  background-image: url(https://media.gucci.com/style/DarkGray_Center_0_0_800x800/1634838345/692078_ICZA0_8521_001_100_0000_Light-Gucci-Tiger-G-Timeless-watch-38-mm.jpg);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e6e6e6;
}
.picPICASSO:hover {
  background-image: url(https://media.gucci.com/style/White_South_0_160_316x316/1634838347/692078_ICZA0_8521_002_100_0000_Light.jpg);
  background-color: #ffffff;
}

.picNOVEL {
  background-image: url(https://media.gucci.com/style/DarkGray_Center_0_0_800x800/1619420411/676167_I1600_8512_001_100_0000_Light-G-Timeless-Automatic-38-mm.jpg);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e6e6e6;
}
.picNOVEL:hover {
  background-image: url(https://media.gucci.com/style/White_South_0_160_316x316/1613583906/663937_I1600_1108_002_100_0000_Light.jpg);
  background-color: #ffffff;
}

.picMARBEL {
  background-image: url(https://media.gucci.com/style/DarkGray_Center_0_0_800x800/1613583905/663937_I1600_1108_001_100_0000_Light-Gucci-Dive-watch-40mm.jpg);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e6e6e6;
}
.picMARBEL:hover {
  background-image: url(https://media.gucci.com/style/White_South_0_160_316x316/1613583906/663937_I1600_1108_002_100_0000_Light.jpg);
  background-color: #ffffff;
}

.picMOON {
  background-image: url(https://media.gucci.com/style/DarkGray_Center_0_0_800x800/1627490710/686947_ICXA0_8183_001_100_0000_Light-Limited-Edition-Gucci-Dive-40mm.jpg);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e6e6e6;
}
.picMOON:hover {
  background-image: url(https://media.gucci.com/style/White_South_0_160_316x316/1627490710/686947_ICXA0_8183_002_100_0000_Light.jpg);
  background-color: #ffffff;
}

.picGALAXY {
  background-image: url(https://media.gucci.com/style/DarkGray_Center_0_0_800x800/1630075503/663941_I1600_8512_001_100_0000_Light-Gucci-Dive-watch-45mm.jpg);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e6e6e6;
}
.picGALAXY:hover {
  background-image: url(https://media.gucci.com/style/White_South_0_160_316x316/1567584906/596512_I1600_8504_002_100_0000_Light.jpg);
  background-color: #ffffff;
}

.bigpic {
  margin-top: 5px;
  width: 100%;
  height: 400px;
  background-image: url(https://media.gucci.com/content/HomepageVideoBackgroundStandard_1300x758/1636100137/HomepageVideoBackgroundStandard_Love-Parade-showspace-02_001_Default.jpg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.footer {
  color: white;
  background-color: #1b1b1b;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  padding-top: 8%;
  padding-left: 1%;
  padding-right: 1%;
  padding-left: 15%;
  padding-right: 15%;
}

.footer__section {
  list-style: none;
  padding-top: 5px;
  line-height: 2;
  word-spacing: 2px;
}
.footer__section h4 {
  font-weight: lighter;
  color: #c4c4c4;
}

.footerSide h4 {
  font-weight: lighter;
  color: #c4c4c4;
}
.footerSide p {
  font-size: 10px;
  color: #c4c4c4;
  line-height: 2;
  word-spacing: 2px;
}
.footerSide input[type=text],
.footerSide input textarea {
  color: white;
  background-color: #000000;
  border: none;
  width: 60%;
}
.footerSide input[type=email],
.footerSide input textarea {
  color: white;
  background-color: #000000;
  border: none;
  width: 60%;
}
.footerSide button[type=submit],
.footerSide button {
  color: white;
  background-color: #000000;
  width: 15px;
  border: none;
}

#rootItemsStoreCart {
  width: 20px;
  height: 20px;
  background-color: rebeccapurple;
}

#amount0 {
  color: white;
  font-size: 10px;
  width: 10px;
}