@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;800&display=swap");

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

#wrapper {
  flex: 1;
}
header {
  position: relative;
}
header::before {
  background: url(../images/color-line.svg) center center/cover no-repeat;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  width: 100%;
}
.navbar-brand {
  margin-top: 20px;
}
.navbar-brand svg {
  height: 50px;
}

.logo {
  width: 20%;
  padding-top: 20px;
}
section {
  padding: 50px 0;
}
.alert-warning {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-wrapper {
  position: relative;
  margin: 0 20px 0 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #f2f5fd;
}
.content-wrapper h5 {
  text-align: center;
  font-weight: 800;
  color: #24335c;
}

.urun-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.urun-box .urun-box-overlay {
  position: relative;
  z-index: 1;
  background: #457fca; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to left,
    #5691c8,
    #457fca
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to left,
    #5691c8,
    #457fca
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 20px;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  margin-bottom: 30px;
}
.urun-box-images {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.urun-box-images img {
  width: 100%;
  object-fit: cover;
}
.urun-box-title h6 {
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 150%;
}
.urun-box-price {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}
.urun-box-price span {
  font-size: 17px;
  display: inline-block;
}
.urunler-form .card {
  border: 0;
}
.urunler-form .card-body {
  background-color: #f8f8f8;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 30px;
}
.urunler-form .card-body .price-input:focus {
  box-shadow: none;
}
.form-select:focus {
  box-shadow: none;
  border-color: none;
}
.alert .btn {
  background-color: #ea5716;
  color: #fff;
  border: 0;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
}
del {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #ff0000;
}
.btn-group {
  gap: 5px;
}
.btn-group .btn {
  padding: 0.25rem 0.5rem;
  display: inline-flex;
  align-items: center;
}
.price-input.editing {
  background-color: #fff;
  border-color: #ffc107;
}
@media (width <= 991px) {
  .logo {
    width: 30%;
    padding-top: 20px;
  }
}
