@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
  --backgroundColor: #015549;
  --buttonColor: #e83b3f;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#pg_slider_itens {
  background: #fff;
}

.bg {
    background: var(--backgroundColor);
    min-height: 440px;
    position: absolute;
    width: 100%;
    top: 0;
    clip-path: ellipse(70% 49% at 50% 30%);
    -webkit-clip-path: ellipse(70% 49% at 50% 30%);
}

#infoItemOrder {
    display: flex;
    -webkit-box-display: flex;
    -moz-box-display: flex;
    -ms-flexbox-display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}

.colQtd {
    width: 20%;
    text-align: center;
}

.colSize {
    width: 70%;
}

#itemControls {
    position: fixed;
    width: 100%;
    bottom: 0;
}

#infoItemOrder select {
    border: 1px solid #d4d4d4;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    font-size: 20px;
    padding: 8px 14px;
    color: #535353;
    max-width: 100%;
}

#btnOrder {
    width: calc(100% - 60px);
    margin: 14px 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background:  var(--buttonColor);
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 14px 0;
}

.pizzaSlider {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    position: relative;
    margin-bottom: 14px;
}

.sliderItems {
    display: flex;
    -webkit-box-display: flex;
    -moz-box-display: flex;
    -ms-flexbox-display: flex;
    justify-content: center;
    align-items: end;
    width: max-content;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.075);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.075);
    -moz-transition: -moz-transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.075);
    -o-transition: -o-transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.075);
}

.sliderItems .item {
  padding: 0 14px;
  width: 70vw;
  max-width: 360px;
  pointer-events: all;
  cursor: grab;
}

.sliderItems .item img {
    width: 60vw;
    max-width: 300px;
    transition: transform 0.9s;
    -webkit-transition: -webkit-transform 0.9s;
    -moz-transition: -moz-transform 0.9s;
    -o-transition: -o-transform 0.9s;
}

.sliderItems .item.active img {
    width: 70vw;
    max-width: 360px;
    display: block;
}

.sliderItems * {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.sliderItems .item:active {
  cursor: grabbing;
}

.rotated-next {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.rotated-prev {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.arrow {
    display: flex;
    -webkit-box-display: flex;
    -moz-box-display: flex;
    -ms-flexbox-display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    z-index: 900;
    top: 55%;
}

.arrow a {
    color: #dadada;
    padding: 10px;
    text-decoration: none;
}

#next {
    position: fixed;
    right: 0;
}

#prev {
    position: fixed;
    left: 0;
}

.titleSlider {
    width: 100%;
    height: 44px;
    margin: 24px 0 20px 0;
    overflow: hidden;
}

h2.title {
    text-align: center;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 34px;
    color: #fff;
    line-height: normal;
    display: block;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; 
    height: 42px;
}

#titlesItems {
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: -moz-transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: -o-transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.detailSlider {
    width: 100%;
    height: 218px;
    margin: 0 0 30px 0;
    overflow: hidden;
}

.detailItems {
    transition: transform 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.175);
    -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.175);
    -moz-transition: -moz-transform 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.175);
    -o-transition: -o-transform 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.175);
}

.detail {
    padding: 0 30px;
    height: 218px;
    margin-bottom: 30px;
    overflow-y: auto;
}

span.priceItem {
    font-size: 26px;
    font-weight: bold;
    color: var(--buttonColor);
}

span.priceText {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  padding: 16px 0;
  line-height: normal;
  font-weight: normal;
}

p.descItem {
    font-size: 16px;
    color: #6d6d6d;
    font-family: "Roboto", sans-serif;
    padding: 16px 0;
    line-height: normal;
}

/***** MODAL POP-UP****/

.headModalEddy {
  display: flex;
  padding: 14px;
}

.headModalEddy h4 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  width: 100%;
}

.hideModal i{
  font-size: 30px;
  color: red;
  padding-right: 14px;
}

.contentModalEddy {
  padding: 10px 14px;
  max-height: 75vh;
  overflow-y: scroll;
}

.footerModalEddy {
  display: flex;
  padding: 14px 14px 28px 14px;
  justify-content: space-between;
  align-items: center;
}

.buttonsQuantity{
  margin-right: 14px;
}

.buttonsQuantity .component_list_items_btn_quantity_card{
  height: 48px;
}

.buttonsQuantity .component_list_items_quantity_decrease, .buttonsQuantity .component_list_items_quantity_increase {
  margin: auto;
}

.btnAddModalEddy {
  width: 100%;
  background: #00b400;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 25px;
  font-weight: 500;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
}

.buttonsQuantity{
  width: 35%;
}

.swal2-container{
  z-index: 10000;
}

.btnBlock{
  background: #d4d4d4!important;
  color: #616161!important;
}