* {
  outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes innerDrawIn {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  background-image: url("../../images/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position-y: center;
  background-position-x: 75%;
  font-family: "Prompt", sans-serif;
}
@media screen and (max-width: 1357px) {
  body {
    background-position-x: -125px;
  }
}

.container {
  max-width: 1450px;
  margin: 0 auto;
  height: 100%;
}

header {
  width: 100%;
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(10px);
}
header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo-dot {
  color: #F00;
}

main {
  width: 100%;
  height: 100%;
}

.row {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-column-gap: 18%;
  width: 100%;
}

@media screen and (max-width: 1550px) {
  .row {
    grid-column-gap: 15px;
  }
}
@media screen and (max-width: 1000px) {
  body {
    overflow-y: auto;
    background-color: #FFFFFF;
    background-image: none;
  }

  .row {
    grid-template-columns: 1fr;
    grid-template-rows: 80vw 1fr;
    align-content: center;
  }

  .col:first-child {
    display: flex;
    justify-content: center;
    align-content: center;
    height: fit-content;
    margin-top: 0;
  }
  .col:first-child .pizza-preview {
    width: 80vw;
    height: 80vw;
  }
  .col:first-child .pizza-preview .imgs-stack {
    margin-top: 0;
  }
}
.col {
  margin-top: 100px;
}

@media screen and (max-width: 1500px) {
  .col {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.pizza-preview {
  width: 430px;
}
.pizza-preview .imgs-stack {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  width: 100%;
  margin-top: 20%;
}
.pizza-preview .imgs-stack img {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.col:last-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pizza-composition, .pizza-components {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: saturate(180%) blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  color: #FFF;
}
.pizza-composition .header, .pizza-components .header {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pizza-composition .header h3, .pizza-components .header h3 {
  font-size: 1.4rem;
}

a {
  text-decoration: none;
  color: unset;
}

.content-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 30px;
  max-height: 200px;
  overflow-y: auto;
}
.content-list .li {
  width: 100%;
  padding: 10px;
  background-color: burlywood;
  display: flex;
  border-radius: 5px;
  justify-content: space-between;
  align-content: center;
  animation: ease-in-out innerDrawIn 0.5s;
}
.content-list .li .name {
  font-size: 1.2rem;
}
.content-list .li .price {
  font-weight: 700;
}
.content-list .li .price .value {
  font-size: 1.2rem;
}

.content-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 15px;
}
.content-grid .gi {
  width: 100%;
  padding: 10px;
  background-color: #797979;
  display: flex;
  border-radius: 5px;
  justify-content: space-between;
  align-content: center;
  position: relative;
  overflow: hidden;
}
.content-grid .gi .name {
  font-size: 1.2rem;
}
.content-grid .gi:hover .price {
  opacity: 1;
}
.content-grid .gi:hover.selected {
  opacity: 1;
}
.content-grid .gi .price {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.1s;
  font-weight: 700;
}
.content-grid .gi .price .value {
  font-size: 1.2rem;
}
.content-grid .gi:focus {
  outline: 3px solid #ababab;
}
.content-grid .gi .price-operation::before {
  content: "+";
}
.content-grid .gi.selected {
  opacity: 0.5;
  user-select: none;
  transition-duration: 0.1s;
}
.content-grid .gi.selected .price-operation::before {
  content: "-";
}

.total-price {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.total-price .value {
  font-size: 1.5rem;
}
.total-price .currency {
  font-size: 1.1rem;
}

@media screen and (max-width: 800px) {
  .col {
    margin-left: 0;
    margin-right: 0;
  }

  .pizza-composition, .pizza-components {
    border-radius: unset;
  }
}
.flex {
  display: flex;
}

.flex-end {
  justify-content: flex-end;
}

.flex-center {
  justify-content: center;
}

.confirm-order {
  padding: 8px 16px;
  border: none;
  background-color: #FF0000;
  color: #FFFFFF;
  font-family: "Prompt", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition-duration: 0.2s;
}
.confirm-order:hover {
  background-color: #e60000;
}
.confirm-order:active, .confirm-order:focus {
  outline: #FF0000 solid 2px;
  outline-offset: 3px;
}
.confirm-order:disabled {
  background-color: #ababab;
  cursor: not-allowed;
}

/*# sourceMappingURL=main.css.map */
