#glogin_btn {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 55px;
  z-index: 1000;
  margin-top: 15px;
  text-align: center;
}

.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-grid; place-items: center;
  font-weight: 700; overflow: hidden;
  background: #e5e7eb; color: #374151;
}
.avatar .initial {
  font-size: 18px;
}


.img-container img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	height: -webkit-fill-available;
	object-position: top left;
}
#search-bar {
	/*background-color: #e2fcfc;*/
}
.editing-container button {
    padding: 1.25rem;
    background-color: #d3e8e9;
    cursor: pointer;
    text-decoration: underline;
    font-family: "Cairo";
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.edititemformmenu button {
	background-color: transparent;
}
.edititemformmenu button.selected {
	background-color: #fff;
}
.edititem2,.edititem3,.edititem4 {
	display: none;
}

.uploaded-img:hover {
	/*display: none;*/
}

.uploaded-img:hover .arrange-img2 {
	display: block;
}

.arrange-img img {
	/*width: 48px !important;*/
	/*height: 48px !important;*/
}

.arrange-img2 {
	display: none;
    position: absolute;
    /*position: relative;*/
    height: 100%;
    width: 100%;
    background-color: rgba(171, 192, 192, 0.8);
}
.arrange-img2 button {
	position: absolute;
	width: 64px;
	height: 64px;
}
.move-to-right {
	right: 0;
	bottom: 0;
}

.move-to-left {
	left: 0;
	bottom: 0;
}
.delete-btn {
	top: 0;
	right: 0;
}


.product-card.mine .img-container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 5px;
  background: rgba(0, 120, 0, 0.5); /* 50% átlátszó fekete */
}

#uploadprogress {
	min-height: 200px;
}


/* Container for the toggle */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    float: right;
}

/* Hide default checkbox */
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The track */
.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 24px;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s;
}

/* The circular slider */
.slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

/* Toggled state */
.toggle-switch input:checked+.slider {
    background-color: #4caf50;
}

.toggle-switch input:checked+.slider::before {
    transform: translateX(26px);
}