@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin);
@font-face{font-family:"revicons";fallback:fallback;src:url([object Module]) format('woff'),url(/_next/static/revicons.ttf) format('ttf'),url(/_next/static/revicons.eot) format('ttf')}.react-multi-carousel-list{display:flex;align-items:center;overflow:hidden;position:relative}.react-multi-carousel-track{list-style:none;padding:0;margin:0;display:flex;flex-direction:row;position:relative;transform-style:preserve-3d;backface-visibility:hidden;will-change:transform,transition}.react-multiple-carousel__arrow{position:absolute;outline:0;transition:all .5s;border-radius:35px;z-index:1000;border:0;background:rgba(0,0,0,0.5);min-width:43px;min-height:43px;opacity:1;cursor:pointer}.react-multiple-carousel__arrow:hover{background:rgba(0,0,0,0.8)}.react-multiple-carousel__arrow::before{font-size:20px;color:#fff;display:block;font-family:revicons;text-align:center;z-index:2;position:relative}.react-multiple-carousel__arrow--left{left:calc(4% + 1px)}.react-multiple-carousel__arrow--left::before{content:"\E824"}.react-multiple-carousel__arrow--right{right:calc(4% + 1px)}.react-multiple-carousel__arrow--right::before{content:"\E825"}.react-multi-carousel-dot-list{position:absolute;bottom:0;display:flex;left:0;right:0;justify-content:center;margin:auto;padding:0;margin:0;list-style:none;text-align:center}.react-multi-carousel-dot button{display:inline-block;width:12px;height:12px;border-radius:50%;opacity:1;padding:5px 5px 5px 5px;box-shadow:none;transition:background .5s;border-width:2px;border-style:solid;border-color:grey;padding:0;margin:0;margin-right:6px;outline:0;cursor:pointer}.react-multi-carousel-dot button:hover:active{background:#080808}.react-multi-carousel-dot--active button{background:#080808}.react-multi-carousel-item{transform-style:preserve-3d;backface-visibility:hidden}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.react-multi-carousel-item{flex-shrink:0 !important}.react-multi-carousel-track{overflow:visible !important}}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.container-lista {
  margin-top: 100px;
}

.container {
  width: auto !important;
}

.my-stablishiment {
  color: #3f3e3e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25rem;
  width: 100%;
  margin-bottom: 20px;
}

.row-stablishiment {
  margin-bottom: 15px;
}

.estabelecimento {
  border: 1px solid #e9e9e9;
  padding: 22px 15px 15px 15px;
  font-family: "SulSans", Helvetica, sans-serif;
  cursor: pointer;
  border-radius: 7px;

  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  flex-direction: row-reverse;
}

.link-stablishiment {
  cursor: pointer;
}

.favorite-hospital {
  width: 25px;
  height: 25px;
  margin-top: -5px;
}

.favorite {
  margin-top: -20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  width: 25px;
  height: 25px;
}

.estabelecimento:hover {
  background: #f8f8f8;
}

.link-stablishiment:hover {
  text-decoration: none;
}
.name-stablishiment {
  color: #3e3e3e;
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-stablishiment {
  font-weight: 300;
  color: #717171;
  font-size: 13px;
  margin-bottom: 8px;
}

.status-stablishiment {
  font-weight: 300;
  color: #717171;
  font-size: 13px;
  margin-bottom: 8px;
}

.close-day {
  height: 9px;
  background-color: red;
  /* width: 10px; */
  border-radius: 10px;
  position: relative;
  display: inline-block;
  width: 10px;
  margin: 0px 8px;
}

.pagination-custom .page-link::after {
  display: none !important;
}

.login100-form-title {
    display: block;
    /* font-family: SourceSansPro-Bold; */
    font-size: 30px;
    color: #4b2354;
    line-height: 1.2;
    text-align: center;
}
/* . */
.p-b-37 {
    padding-bottom: 37px;
}
/* @media (max-width: 480px)
.wrap-login100 {
    padding-left: 15px;
    padding-right: 15px;
} */
.wrap-login100 {
    width: 390px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 20px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 3px 20px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 3px 20px 0 rgb(0 0 0 / 10%);
    -o-box-shadow: 0 3px 20px 0 rgba(0,0,0,.1);
    -ms-box-shadow: 0 3px 20px 0 rgba(0,0,0,.1);
}
.p-r-55 {
    padding-right: 55px;
}
.p-l-55 {
    padding-left: 55px;
}
.p-b-30 {
    padding-bottom: 30px;
}
.p-t-80 {
    padding-top: 80px;
}
.login100-form {
    width: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: inherit;
}
form {
    display: block;
    margin-top: 0em;
}
.validate-input {
    position: relative;
}

.wrap-input100 {
    width: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 20px;
}
.m-b-20 {
    margin-bottom: 20px;
}
.input100 {
    /* font-family: SourceSansPro-Bold; */
    font-size: 16px;
    color: #4b2354;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 62px;
    background: 0 0;
    padding: 0 20px 0 23px;
}
input {
    outline: none;
    border: none;
}

.focus-input100 {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 20px;
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 5px 30px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
    -o-box-shadow: 0 5px 30px 0 rgba(0,0,0,.1);
    -ms-box-shadow: 0 5px 30px 0 rgba(0,0,0,.1);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
}
.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.login100-form-btn {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 160px;
    height: 50px;
    background-color: #686464 !important;
    border-radius: 25px;
    /* font-family: SourceSansPro-SemiBold; */
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    box-shadow: 0 10px 30px 0 (#686464 / 50%);
    -moz-box-shadow: 0 10px 30px 0 #686464 !important;
    -webkit-box-shadow: 0 10px 30px 0 #686464 !important;
    -o-box-shadow: 0 10px 30px 0 #686464 !important;
    -ms-box-shadow: 0 10px 30px 0 #686464 !important;
}
button {
    outline: none!important;
    border: none;
    background: 0 0;
}
[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button;
}
button, select {
    text-transform: none;
}
button, input {
    overflow: visible;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
[role=button], a, area, button, input, label, select, summary, textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: inherit;
}
user agent stylesheet
button {
    appearance: auto;
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark(black, white);
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: center;
    align-items: flex-start;
    cursor: default;
    background-color: -internal-light-dark(rgb(239, 239, 239), rgb(59, 59, 59));
    box-sizing: border-box;
    margin: 0em;
    font: 400 13.3333px Arial;
    padding: 1px 6px;
    border-width: 2px;
    border-style: outset;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
}
.text-center {
    text-align: center;
}
.p-b-20 {
    padding-bottom: 20px;
}
.p-t-57 {
    padding-top: 57px;
}
.text-center {
    text-align: center!important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: inherit;
}
user agent stylesheet
div {
    display: block;
}
.flex-c {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}
.p-b-112 {
    padding-bottom: 112px;
}
.invalid-feedback {
    text-align: center;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
    display: block !important;
}
.wrap-login100{
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}
.button-criar-conta{
    cursor: pointer;
    color: #7a8187;
}

.button-criar-conta:hover{
    cursor: pointer;
    color: #7a8187;
}

.close-modal-logim{
    position: absolute;
    right: 5%;
    top: 3%;
    font-size: 20px;
    cursor: pointer;
}

.carou{
  top: 48%;
  font-family: sans-serif;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  /* height: 10vh; */
  /* background-color: black; */
  /* top: 13%; */
  /* position: fixed; */
  z-index: 1000;
  width: 100%;
  margin: 0 0px 0px -6px;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px; */
  background-color: white;
}
h1{
  text-align: center;
}
.App {
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10vh;
  /* background-color: black; */
  top: 6%;
  position: fixed;
  z-index: 1000;
  width: 100%;
  margin: 0;box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  background-color: white;
}

.rec-carousel-item:focus {
  outline: none;
  box-shadow: inset 0 0 1px 0px violet;
}
/* .rec .rec-pagination {
    display: none;
} */
.rec-dot{
  border-radius: 0% !important;
  height: 3px !important;
  width: 15px !important;
  box-shadow: 0 0 1px 1px rgba(0,0,0,0.5) !important;
}
.rec-arrow-right{
  display: none;
}
.rec-arrow-left{
  display: none;
}
  
.invalid{
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}
.banner-admin {
  text-align: center;
  font-family: "SulSans", Helvetica, sans-serif;
  margin-top: -48px;
}

.banner-admin p {
  line-height: 0.7em !important;
}

.banner-admin img {
  width: 190px;
}

.banner {
  text-align: center;
  /* background-color: #f3edd9; */
}

.banner img {
  width: 130px;
  margin-top: 15px;
  margin-bottom: 15px;
  top: 0;
}

.bg-light {
    background-color: #ffffff!important;
}
.navbar{
    color: rgb(112, 111, 211) !important;
    font-weight: 500;
    height: 100px;
    border-bottom: 1px solid #cacaca;
}
.navbar-brand{
    color: rgb(112, 111, 211)!important;
    font-weight: 500;
}

.nome-estabelecimento{
    text-transform: uppercase;
    color: #706fd3;
    /* width: 71%; */
    width: 100%;
    display: inline-block;
    position: relative;

    font-size: 22px;
    margin-left: 2%;
    margin-right: 2%;
    text-align: center;
}

.nome-estabelecimento .navbar-brand{
    height: 3em;
}

.logoCheckout{
    width: 25%;
    display: inline-block;
    position: relative;
}
.logoCheckout img{
    max-width: 93px;
    width: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}
.selected{
  color: black;
  text-decoration: underline;
}

.modalLocal{
  /* height: 50%;
  top: 32%; */
}

hr{
  width: 90%;
}
img{
  margin: 0;
  position: relative;
  top: 50%;
  transform: translate(0.2, 50%);
  border-radius: 5px;
}
h2{
  padding-left: 20px;
  padding-right: 34px;
  text-align: left;
  font-size: 1.425rem;
  font-weight: 600;
  color: #8483d9;
}
h5{
  font-weight: 500;  
  font-size: 19px;
}
h4{
  font-weight: 600;  
}
.container{
  padding: 10px;
  padding-right: 10px !important;
  padding-left: 10px !important;
}
.card-body{
  padding: 10px !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.jumbotron{
  padding: 0px;
}

.criadorPor{
  text-align: center;
  margin: 4%;
  padding-bottom: 15%;
}

.criadorPor p a{
  /* color: rgb(106 106 106); */
}
.bag-container{
  width: 50px;
  background-color: rgb(112 111 211);
  height: 50px;
  position: fixed;
  bottom: 65px;
  display: grid;
  right: 5px;
  color: #444;
  border-radius: 30px;
}

.bag-span{
  text-align: center;
  position: relative;
  top: 25%;
  font-size: 20px;
  left: 7px;
  border-radius: 50%;
}
.grid-container {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  grid-gap: 0px;
  background-color: #fff;
  display: grid;


  width: 100%;
  /* background-color: rgb(112 111 211); */
  color: white;
  height: 50px;
  position: fixed;
  bottom: 0;
}

.grid-item {
  text-align: center;
  display: grid;
  font-size: 17px; 
  cursor: pointer; 
}

.button-bottom{
  margin-top: 5px;
}

.button-bottom svg{
  font-size: 20px;
}

.counterBag{
  position: relative;
  top: -4px;
  font-size: 12px;
  background-color: white;
  color: black;
  border-radius: 16px;
  /* width: 12px; */
  padding: 0px 5px;
  left: 0px;
}

.headerSacola{
  width: 100%;
  /* position: absolute; */
  left: 0;
  /* height: 52px; */
  padding-bottom: 20px;
  top: 0;
  /* border-bottom: 1px solid #ccc!important; */
  display: grid;
  grid-template-columns: 32% 65%;
  grid-gap: 10px;
  align-items: center;
}
.headerSacolaIten{
  font-size: 25px;  
  color: rgb(48, 51, 60);
  font-weight: 500;
}
.dividerSpace{
  width: 100%;
  position: relative;
  left: 0;
  height: 41px;
  display: -webkit-box;
  top: 29px;
}
.fazerPedido{
  border-top: 1px solid #ccc!important;
  position: fixed;
  display: block;
  bottom: 0;
  background-color: white;
  color: white;
  /* box-shadow: rgb(0 0 0 / 10%) 0px 0px 5px 0px, rgb(0 0 0 / 10%) 0px 0px 1px 0px; */
  height: 55px;
  width: 100%;
  left: 0;
}
.fazerPedidoBtn{
  border-radius: 4px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  top: 5px;
  position: relative;
  background-color: #706fd3;
  width: 70% !important;
  /* left: 15%; */
  padding: 10px 16px 14px;
  color: white;
  text-decoration: none;
}
.fazerPedidoBtnGray{
  border-radius: 4px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  top: 5px;
  position: relative;
  background-color: #a4a4a4;
  width: 70% !important;
  /* left: 15%; */
  padding: 10px 16px 14px;
  color: white;
  text-decoration: none;
}
.fazerPedidoBtn:hover {
  color: white !important;
  text-decoration: none;
}
.fazerPedidoBtnGray:hover{
  color: white !important;
  text-decoration: none;
}
.grid-descriptions {
  display: grid;
  grid-template-columns: 70% 35%;
  grid-gap: 10px;
  background-color: #fff;
  color: #444;
}

.grid-descriptions-item {
  text-align: center;
  position: relative;
  top: 28%;
  font-size: 20px;
}

.line-botton{
  text-decoration: none;
  width: 100%;
}

.searchButton {
  box-shadow: rgb(0 0 0 / 29%) 0px 0px 5px 0px, rgb(0 0 0 / 10%) 0px 0px 1px 0px;
  border: none;
  width: 100%;
  height: 38px;
  border-radius: 6px;
}
.searchButton:focus{
  outline: none !important;

  box-shadow: rgb(112 111 211) 0px 0px 5px 0px, rgb(112 111 211) 0px 0px 1px 0px !important;
  border: none !important;
}

.ReactModal__Overlay{
  inset: 0% 2px -3px -3px !important;
  top: 0!important;
}

.ReactModal__Content ReactModal__Content--after-open{
  overflow: none !important;
}
.ReactModal__Content{
  left: 0px !important;
  right: 0px !important;
  height: 92%;
}
.grid-descriptions-adress{
  width: 100%;
  position: relative;
  left: 0;
  height: 52px;
  top: 0;
  border-bottom: 1px solid #ccc!important;
  display: grid;
  grid-template-columns: 10% 80% 10%;
  grid-gap: 10px;
  align-items: center;
  color: #706fd3;
}
.restorentAddres{
  padding: 15px 19px 0px 19px;
  color: rgb(106, 112, 118);
    /* text-align: center; */
}

.hr-mod{
    width: 98%;
}

.restorentAddres span{
  font-size: 15px;
}
.restorentAddres p{
  font-size: 15px;
}

.restorentAddres .address{
  text-align: left;
  padding: 0px 34px;
}

@media (max-width: 996px) {
  .restorentAddres .address{
    order: 2;
    text-align: center;
  }
}

.restorentAddres .weeks{
  text-align: right;
  padding: 0px 34px;
}

@media (max-width: 996px) {
  .restorentAddres .weeks{
    text-align: center;
  }
}

.row-products{
  cursor: pointer;
  /* background-color: #cacaca; */
}

.categorie{
  margin: 15px 0px 15px 0px;
}

.icon-map{
  margin-top: -3px;
  margin-right: 3px;
}
@media (max-width: 996px) {
  .text-address{
    text-align:center;
  }
}
.btn-icon-edit{
  border-radius: 4px;
  text-align: center;
  font-size: 20px;
  background-color: #ff0000;
  border: none;
  margin: 0px 11px;
  height: 29px;
  width: 30px;
}

.error-form{
  border-color: #ff0000;
}

.color-btn{
  background-color: #706fd3;
}

.icon-edit{
  margin-left: 10px;
  /* color: rgb(146, 143, 143); */
  color: white;
  margin-top: -3px;
  cursor: pointer;
  margin: auto;
}

@media (max-width: 996px) {
  .ReactModal__Content--after-open{
    padding: 15px 0px !important;
  }
}

.header-sacola{
  /* height: 40px;
  margin: 0px;
  border-bottom: 1px solid rgb(232, 234, 237);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
  background: rgb(255, 255, 255);
  padding-bottom: 20px; */

  height: 49px;
  margin-top: -20px;
  padding: 5px 0px 5px 0px;
  /* max-width: 800px; */
  /* border-bottom: 1px solid rgb(232, 234, 237); */
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
  background: rgb(255 255 255);
  /* padding-bottom: 20px; */
  position: fixed;
  width: 72%;
  z-index: 100000;
}

@media (max-width: 1100px) {
  .header-sacola{
    width: 85%;
  }
}


@media (max-width: 680px) {
  .header-sacola{
    width: 85%;
  }
}


@media (max-width: 550px) {
  .header-sacola{
    width: 90%;
  }
}


@media (max-width: 425px) {
  .header-sacola{
    width: 90%;
  }
}

@media (max-width: 360px) {
  .header-sacola{
    width: 85%;
  }
}


/* 85% */

.go-back{
  transform: rotate( 180deg );
  width: 40px;
  height: 35px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: end;
  justify-content: flex-end;
  cursor: pointer;
}

.title-header{
  width: 100%;
  height: 90%;
  /* margin-left: 6px; */
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 25px;  color: rgb(112, 111, 211);
  font-weight: 500;
  margin-top: -30px;
}

.opcao-entrega{
  position: relative;
  margin: 0px 16px;
  padding: 10px 4px 10px 0px;
  width: calc(100% - 32px);
  border-bottom: 1px solid rgb(232, 234, 237);
  display: flex;
  align-items: flex-start;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.opcao-first{
  width: 100%;
  padding: 0px 16px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  /* background: rgb(243, 245, 247); */
}

.opcao-retirada{
  position: relative;
  margin: 0px 16px;
  padding: 10px 4px 10px 0px;
  width: calc(100% - 32px);
  border-bottom: 1px solid rgb(232, 234, 237);
  display: flex;
  align-items: flex-start;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.status-retirada{
  margin-top: -10px !important;
}
.grid3{
  grid-template-columns: 6% 71% 23%;
  display: grid;
  margin: 0;
}
.opcao-first > .status{
  position: relative;
}

.opcao-first .status{
  /* position: absolute;
  top: 50%;
  transform: translateY(-50%); */
  right: 0px;
  padding: 4px 8px;
  margin-right: 0px;
  border-radius: 24px;
  opacity: 1;
  font-size: 12px;
  transition: all 0.3s ease 0s;
  font-weight: 600;
  text-align: center;
  visibility: visible;
  color: rgb(255, 255, 255);
  background: rgb(127, 143, 159);
}

.descrition-retirada{
  font-size: 15px;
  line-height: 150%;
  font-weight: 500;
  color: rgb(72, 84, 96);
}

.conteudo-modal{
  height: 700px;
}

.mt-10{
  margin-top: 10px;
}

.nameUser{
  width: 100%;
}

.head-itens{
  border-top: 1px solid #ededed !important;
  /* margin-top: 20px !important; */
  padding-top: 14px !important;
}
.loading {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%; 
	z-index: 9999; 
	background: url(/imgs/loading-spinning-bubbles.svg) 50% 50% no-repeat #4b5a77;
	/* background: url(../img/gif_book.png) 50% 50% no-repeat #4b5a77; */
    /* background-color: rgba(0, 0, 0, 0.51); */
    background-color: rgb(0 0 0 / 81%);
    opacity: 0.7;
}
.App {
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;  
  height: 45px;
  /* position: fixed; */
  z-index: 1000;
  width: 100%;
  margin: 0;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px; */
  box-shadow: 0 3px 4px rgb(0 0 0 / 17%);
  /* background-color: rgb(94, 66, 66); */
}

.rec-carousel-item:focus {
  outline: none;
  box-shadow: inset 0 0 1px 0px violet;
}

.rec-dot{
  border-radius: 0% !important;
  height: 3px !important;
  width: 15px !important;
  box-shadow: 0 0 1px 1px rgba(0,0,0,0.5) !important;
}
.rec-arrow-right{
  display: none;
}
.rec-arrow-left{
  display: none;
}
.rec-carousel-item{  
  height: 3em;
  display: flex;
  align-items: center 
}
.item {
    font-family: sans-serif;
    align-items: center;
    justify-content: center;
    width: 100%;
    vertical-align: middle;
    color: #d4d4d5;    
    font-size: 17px;
    font-weight: 600;
    text-align: center;    
    bottom: auto;       
}  
h5{
    color: #706fd3;
  }
  h4{
    color: #706fd3;
  }
  .card {
    border: 0px;
    /* box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.12);  margin-bottom: 10px; */
  
    border-bottom: 1px solid rgb(112 111 211 / 22%);
    /* border-radius: 5px; */
    /* border-top: 1px solid rgb(112 111 211 / 22%); */
    padding-bottom: 3%;
    padding-top: 3%;
  }
  .divider{
    position: fixed;
    bottom: 12px;
    width: 100%;
    border-style: 1px;
    left: 0;
    padding: 10px;
    bottom: 0;
    border: 1px solid rgb(204, 204, 204);
    border-bottom: 0px;
    border-left: 0px;
    border-radius: 0px;
    width: 100%;
    background-color: white;
  }
  .ant-divider-inner-text{
    display: grid;
  }
  .divider .counterButton{
    /* grid-column: 1 / 3; */
  }
  .divider .containerAdicionar{
    grid-column: 3;
  }
  .counterButton{
    width: 25%;
    border-style: solid;
    border-width: 1px;
    padding: 3px 0px 0px 2px;
    border-radius: 2px;
    grid-column: 2;
    height: 42px;
    border: 1px solid rgb(204, 204, 204);
    /* top: 4px;
    position: relative; */
  
    display: flex;
    justify-content: space-around;
    -webkit-box-align: center;
    align-items: center;
  }
  .counterButton button{
    color: #706fd3;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 3px 3px;
    outline: none;
    transition: 100ms;
    position: relative;
    overflow: hidden;
    cursor: default;
    -webkit-appearance: button;
    width: 30px;
    height: 30px;
    fill: #706fd3;
    font-weight: 900;
    font-size: 18px;
    background-color: transparent;
    cursor: pointer;
  }
  .counterButton .counterResult{
    padding: 5px;
  }
  .counterButton button:active{
    color: white;
    fill: black;
    background-color: #ededed;
    /* padding-top: 13px;
    padding-bottom: 28px; */
    margin-top: 0px;
    /* padding: 13px 25px 28px 25px; */
  }
  
  .adicionar{
    background: #706fd3;
    text-decoration: none;
    color: #ffffff;
    border: none;
    padding: 0px 11px;
    border-radius: 4px;
    margin: 3px 0;
    height: 43px;
    width: 100%;
    font-weight: 500;
    transition: 100ms;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: default;
    margin-left: 10px;
  }
  
  .description{
    font-size: 1.15rem;
    padding-top: 10px;
    margin: 0;
    font-weight: 300;
    line-height: 1.22;
    color: #717171;
    white-space: pre-line;
    padding-bottom: 11px;
  }
  
  .ReactModal__Content{
    top: 0 !important;
    bottom: 0 !important;
  
  }
  
  .ReactModal__Overlay{
    /* position: fixed!important; */
    /* inset: 0% 2px -3px -3px!important; */
    /* background-color: black!important; */
    /* z-index: 21000 !important; */
    /* height: 100%; */
    top: 0;
    /* height: 77%; */
  }
  
  .card-product{
    padding-top: 1% !important;
  }
  
  .card-product:hover{
    background: #fafafa;
  }
  
  .back-modal-product{
    /* float: left; */
    cursor: pointer;
    font-size: 22px;
    margin-top: 0px;
    z-index: 0;
  }
  
  .h5-header{
    margin-top: -25px;
  }
  
  .midia-product{
    border: 1px solid #f5f2f2;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  .header-modal{
    margin-bottom: 5px;
    margin-top: 5px;
  }
  
  /* .img-product{
    margin: 0 auto;
    width: 60%;
    height: 300px;
    transform: translate(0px, 0px);
    border-radius: 0px;
    padding: 5px;
    border-radius: 4px;
    object-fit: cover;
  }
  
  @media (max-width: 996px) {
    .img-product{
      width: 100%;
      height: 175px;
    }
  } */
  
  /* /////////////////////// */
  
  .modal-header{
    display: block;
  }
  
  .modal {
    padding: 0 !important;
  }
  .modal .modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal .modal-body {
    overflow-y: auto;
  }
  
  .modal-footer{
    justify-content: center;
  }
  
  .modal-footer>*{
    width: 40%;
  }
  
  .hidden{
    display: none;
  }
  
  .show{
    display: block;
  }
  
  .resumo{
    font-size: 1.15rem;
    font-weight: bold;
  } 
h5{
  color: #706fd3;
}
h4{
  color: #706fd3;
}
.card {
  border: 0px;
  /* box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.12);  margin-bottom: 10px; */

  border-bottom: 1px solid rgb(112 111 211 / 22%);
  /* border-radius: 5px; */
  /* border-top: 1px solid rgb(112 111 211 / 22%); */
  padding-bottom: 3%;
  padding-top: 3%;
}
.divider{
  position: fixed;
  bottom: 12px;
  width: 100%;
  border-style: 1px;
  left: 0;
  padding: 10px;
  bottom: 0;
  border: 1px solid rgb(204, 204, 204);
  border-bottom: 0px;
  border-left: 0px;
  border-radius: 0px;
  width: 100%;
  background-color: white;
}
.ant-divider-inner-text{
  display: grid;
}
.divider .counterButton{
  /* grid-column: 1 / 3; */
}
.divider .containerAdicionar{
  grid-column: 3;
}
.counterButton{
  width: 25%;
  border-style: solid;
  border-width: 1px;
  padding: 3px 0px 0px 2px;
  border-radius: 2px;
  grid-column: 2;
  height: 42px;
  border: 1px solid rgb(204, 204, 204);
  /* top: 4px;
  position: relative; */

  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
  align-items: center;
}
.counterButton button{
  color: #706fd3;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
  outline: none;
  transition: 100ms;
  position: relative;
  overflow: hidden;
  cursor: default;
  -webkit-appearance: button;
  width: 30px;
  height: 30px;
  fill: #706fd3;
  font-weight: 900;
  font-size: 18px;
  background-color: transparent;
  cursor: pointer;
}
.counterButton .counterResult{
  padding: 5px;
}
.counterButton button:active{
  color: white;
  fill: black;
  background-color: #ededed;
  /* padding-top: 13px;
  padding-bottom: 28px; */
  margin-top: 0px;
  /* padding: 13px 25px 28px 25px; */
}

.adicionar{
  background: #706fd3;
  text-decoration: none;
  color: #ffffff;
  border: none;
  padding: 0px 11px;
  border-radius: 4px;
  margin: 3px 0;
  height: 43px;
  width: 100%;
  font-weight: 500;
  transition: 100ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  margin-left: 10px;
}

.description{
  font-size: 0.875rem;
  padding-top: 10px;
  margin: 0;
  font-weight: 300;
  line-height: 1.22;
  color: #717171;
  white-space: pre-line;
  padding-bottom: 11px;
}

.ReactModal__Content{
  top: 0 !important;
  bottom: 0 !important;
  
}

.ReactModal__Overlay{
  /* position: fixed!important; */
  /* inset: 0% 2px -3px -3px!important; */
  /* background-color: black!important; */
  /* z-index: 21000 !important; */
  /* height: 100%; */
  top: 0;
  /* height: 77%; */
}

.card-product{
  padding-top: 1% !important;
}

.card-product:hover{
  background: #fafafa;
}

.back-modal-product{
  /* float: left; */
  cursor: pointer;
  font-size: 22px;
  margin-top: 0px;
  z-index: 0;
}

.h5-header{
  margin-top: -25px;
}

.midia-product{
  border: 1px solid #f5f2f2;
  border-radius: 5px;
  margin-bottom: 15px;
}

.header-modal{
  margin-bottom: 5px;
  margin-top: 5px;
}

/* .img-product{
  margin: 0 auto;
  width: 60%;
  height: 300px;
  transform: translate(0px, 0px);
  border-radius: 0px;
  padding: 5px;
  border-radius: 4px;
  object-fit: cover;
}

@media (max-width: 996px) {
  .img-product{
    width: 100%;
    height: 175px;
  }
} */

/* /////////////////////// */

.modal-header{
  display: block;
}

.modal {
  padding: 0 !important;
}
.modal .modal-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal .modal-body {
  overflow-y: auto;
}

.modal-footer{
  justify-content: center;
}

.modal-footer>*{
  width: 40%;
}

.hidden{
  display: none;
}

.show{
  display: block;
}

.resumo{
  font-size: 1.15rem;
  font-weight: bold;
}
h5{
  color: #706fd3;
}
h4{
  color: #706fd3;
}
.card {
  border: 0px;
  /* box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.12);  margin-bottom: 10px; */

  border-bottom: 1px solid rgb(112 111 211 / 22%);
  /* border-radius: 5px; */
  /* border-top: 1px solid rgb(112 111 211 / 22%); */
  padding-bottom: 3%;
  padding-top: 3%;
}
.divider{
  position: fixed;
  bottom: 12px;
  width: 100%;
  border-style: 1px;
  left: 0;
  padding: 10px;
  bottom: 0;
  border: 1px solid rgb(204, 204, 204);
  border-bottom: 0px;
  border-left: 0px;
  border-radius: 0px;
  width: 100%;
  background-color: white;
}
.ant-divider-inner-text{
  display: grid;
}
.divider .counterButton{
  /* grid-column: 1 / 3; */
}
.divider .containerAdicionar{
  grid-column: 3;
}
.counterButton{
  width: 25%;
  border-style: solid;
  border-width: 1px;
  padding: 3px 0px 0px 2px;
  border-radius: 2px;
  grid-column: 2;
  height: 42px;
  border: 1px solid rgb(204, 204, 204);
  /* top: 4px;
  position: relative; */

  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
  align-items: center;
}
.counterButton button{
  color: #706fd3;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
  outline: none;
  transition: 100ms;
  position: relative;
  overflow: hidden;
  cursor: default;
  -webkit-appearance: button;
  width: 30px;
  height: 30px;
  fill: #706fd3;
  font-weight: 900;
  font-size: 18px;
  background-color: transparent;
  cursor: pointer;
}
.counterButton .counterResult{
  padding: 5px;
}
.counterButton button:active{
  color: white;
  fill: black;
  background-color: #ededed;
  /* padding-top: 13px;
  padding-bottom: 28px; */
  margin-top: 0px;
  /* padding: 13px 25px 28px 25px; */
}

.adicionar{
  background: #706fd3;
  text-decoration: none;
  color: #ffffff;
  border: none;
  padding: 0px 11px;
  border-radius: 4px;
  margin: 3px 0;
  height: 43px;
  width: 100%;
  font-weight: 500;
  transition: 100ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  margin-left: 10px;
}

.description{
  font-size: 0.875rem;
  padding-top: 10px;
  margin: 0;
  font-weight: 300;
  line-height: 1.22;
  color: #717171;
  white-space: pre-line;
  padding-bottom: 11px;
}

.ReactModal__Content{
  top: 0 !important;
  bottom: 0 !important;
  
}

.ReactModal__Overlay{
  /* position: fixed!important; */
  /* inset: 0% 2px -3px -3px!important; */
  /* background-color: black!important; */
  /* z-index: 21000 !important; */
  /* height: 100%; */
  top: 0;
  /* height: 77%; */
}

.card-product{
  padding-top: 1% !important;
}

.card-product:hover{
  background: #fafafa;
}

.back-modal-product{
  /* float: left; */
  cursor: pointer;
  font-size: 22px;
  margin-top: 0px;
  z-index: 0;
}

.h5-header{
  margin-top: -25px;
}

.midia-product{
  border: 1px solid #f5f2f2;
  border-radius: 5px;
  margin-bottom: 15px;
}

.header-modal{
  margin-bottom: 5px;
  margin-top: 5px;
}

/* .img-product{
  margin: 0 auto;
  width: 60%;
  height: 300px;
  transform: translate(0px, 0px);
  border-radius: 0px;
  padding: 5px;
  border-radius: 4px;
  object-fit: cover;
}

@media (max-width: 996px) {
  .img-product{
    width: 100%;
    height: 175px;
  }
} */

/* /////////////////////// */

.modal-header{
  display: block;
}

.modal {
  padding: 0 !important;
}
.modal .modal-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal .modal-body {
  overflow-y: auto;
}

.modal-footer{
  justify-content: center;
}

.modal-footer>*{
  width: 40%;
}

.hidden{
  display: none;
}

.show{
  display: block;
}

.resumo{
  font-size: 1.15rem;
  font-weight: bold;
}

.iconpayment{
    border-width: 1px !important;
    border-style: solid !important;
    border-radius: 7px !important;
    padding: 5px !important;
    color:gray !important;
    margin:'15px' !important;
    background-color: white;
    margin: 0 5px;
}
.active{
    color:white
}
.iconpayment-active{
    background-color: #8483d9;
}

.text-forma-pagamento{
    color: rgb(48, 51, 60);
}

@media (max-width: 996px) {
    .text-forma-pagamento{
        text-align: center;
    }
}
  
@media (max-width: 996px) {
    .formas-pagamento{

    }
}

.list-group-item{
    border: 0px solid rgba(0,0,0,.125) !important;
}

.margin-top{
    margin-top: 2px !important;
}
h5{
  color: #706fd3;
}
h4{
  color: #706fd3;
}
.card {
  border: 0px;
  /* box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.12);  margin-bottom: 10px; */

  border-bottom: 1px solid rgb(58 58 58 / 22%);
  /* border-radius: 5px; */
  /* border-top: 1px solid rgb(112 111 211 / 22%); */
  padding-bottom: 3%;
  padding-top: 3%;
}
.divider{
  position: fixed;
  bottom: 12px;
  width: 100%;
  border-style: 1px;
  left: 0;
  padding: 10px;
  bottom: 0;
  border: 1px solid rgb(204, 204, 204);
  border-bottom: 0px;
  border-left: 0px;
  border-radius: 0px;
  width: 100%;
  background-color: white;
}
.ant-divider-inner-text{
  display: grid;
}
.divider .counterButton{
  /* grid-column: 1 / 3; */
}
.divider .containerAdicionar{
  grid-column: 3;
}
.counterButton{
  width: 25%;
  border-style: solid;
  border-width: 1px;
  padding: 3px 0px 0px 2px;
  border-radius: 2px;
  grid-column: 2;
  height: 42px;
  border: 1px solid rgb(204, 204, 204);
  /* top: 4px;
  position: relative; */

  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
  align-items: center;
}
.counterButton button{
  color: #706fd3;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
  outline: none;
  transition: 100ms;
  position: relative;
  overflow: hidden;
  cursor: default;
  -webkit-appearance: button;
  width: 30px;
  height: 30px;
  fill: #706fd3;
  font-weight: 900;
  font-size: 18px;
  background-color: transparent;
  cursor: pointer;
}
.counterButton .counterResult{
  padding: 5px;
}
.counterButton button:active{
  color: white;
  fill: black;
  background-color: #ededed;
  /* padding-top: 13px;
  padding-bottom: 28px; */
  margin-top: 0px;
  /* padding: 13px 25px 28px 25px; */
}

.adicionar{
  background: #706fd3;
  text-decoration: none;
  color: #ffffff;
  border: none;
  padding: 0px 11px;
  border-radius: 4px;
  margin: 3px 0;
  height: 43px;
  width: 100%;
  font-weight: 500;
  transition: 100ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  margin-left: 10px;
}

.description{
  font-size: 1.15rem;
  padding-top: 10px;
  margin: 0;
  font-weight: 300;
  line-height: 1.22;
  color: #717171;
  white-space: pre-line;
  padding-bottom: 11px;
}

.ReactModal__Content{
  top: 0 !important;
  bottom: 0 !important;
  
}

.ReactModal__Overlay{
  /* position: fixed!important; */
  /* inset: 0% 2px -3px -3px!important; */
  /* background-color: black!important; */
  /* z-index: 21000 !important; */
  /* height: 100%; */
  top: 0;
  /* height: 77%; */
}

.card-product{
  padding-top: 1% !important;
}

.card-product:hover{
  background: #fafafa;
}

.back-modal-product{
  /* float: left; */
  cursor: pointer;
  font-size: 22px;
  margin-top: 0px;
  z-index: 0;
}

.h5-header{
  margin-top: -25px;
}

.midia-product{
  border: 1px solid #f5f2f2;
  border-radius: 5px;
  margin-bottom: 15px;
}

.header-modal{
  margin-bottom: 15px;
}

.media {
  margin: auto;
}

.rec-carousel-item{
  height: 100% !important;
  display: flex;
  align-items: center;
}

.img-product{
  margin: 0 auto;
  width: 100%;
  height: 300px;
  transform: translate(0px, 0px);
  border-radius: 0px;
  padding: 5px;
  border-radius: 4px;
  object-fit: scale-down;
}

@media (max-width: 996px) {
  .img-product{
    width: 100%;
    height: 175px;
  }
}

/* /////////////////////// */

.modal-header{
  display: block;
}

.modal {
  padding: 0 !important;
}
.modal .modal-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal .modal-body {
  overflow-y: auto;
}

.modal-footer{
  justify-content: center;
}

.modal-footer>*{
  width: 40%;
}
.politicas-privacidade ul li {
  margin-left: 25px;
}

.login100-form-title {
  display: block;
  /* font-family: SourceSansPro-Bold; */
  font-size: 30px;
  color: #4b2354;
  line-height: 1.2;
  text-align: center;
}
/* ; */
.p-b-37 {
  padding-bottom: 37px;
}
/* @media (max-width: 480px)
.wrap-login100 {
    padding-left: 15px;
    padding-right: 15px;
} */
.wrap-login100 {
  width: 390px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 20px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 20px 0 rgb(0 0 0 / 10%);
  -o-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
}
.p-r-55 {
  padding-right: 55px;
}
.p-l-55 {
  padding-left: 55px;
}
.p-b-30 {
  padding-bottom: 30px;
}
.p-t-80 {
  padding-top: 80px;
}
.login100-form {
  width: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
::after,
::before {
  box-sizing: inherit;
}
form {
  display: block;
  margin-top: 0em;
}
.validate-input {
  position: relative;
}

.wrap-input100 {
  width: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 20px;
}
.m-b-20 {
  margin-bottom: 20px;
}
.input100 {
  /* font-family: SourceSansPro-Bold; */
  font-size: 16px;
  color: #4b2354;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 62px;
  background: 0 0;
  padding: 0 20px 0 23px;
}
input {
  outline: none;
  border: none;
}
input:disabled {
  background: #b7b7b7;
  border-radius: 10px;
  color: white;
  cursor: progress;
}
button:disabled {
  background: #b7b7b7;
  border-radius: 10px;
  color: white;
  cursor: progress;
}
.focus-input100 {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 20px;
  box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
  -o-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.login100-form-btn {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 160px;
  height: 50px;
  background-color: rgb(112, 111, 211);
  border-radius: 25px;
  /* font-family: SourceSansPro-SemiBold; */
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  box-shadow: 0 10px 30px 0 rgb(189 89 212 / 50%);
  -moz-box-shadow: 0 10px 30px 0 rgb(112, 111, 211);
  -webkit-box-shadow: 0 10px 30px 0 rgb(112, 111, 211);
  -o-box-shadow: 0 10px 30px 0 rgb(112, 111, 211);
  -ms-box-shadow: 0 10px 30px 0 rgb(112, 111, 211);
}
button {
  outline: none !important;
  border: none;
  background: 0 0;
}
[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}
button,
select {
  text-transform: none;
}
button,
input {
  overflow: visible;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
[role="button"],
a,
area,
button,
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
::after,
::before {
  box-sizing: inherit;
}
user agent stylesheet button {
  appearance: auto;
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: -internal-light-dark(black, white);
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  align-items: flex-start;
  cursor: default;
  background-color: -internal-light-dark(rgb(239, 239, 239), rgb(59, 59, 59));
  box-sizing: border-box;
  margin: 0em;
  font: 400 13.3333px Arial;
  padding: 1px 6px;
  border-width: 2px;
  border-style: outset;
  border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
  border-image: initial;
}
.text-center {
  text-align: center;
}
.p-b-20 {
  padding-bottom: 20px;
}
.p-t-57 {
  padding-top: 57px;
}
.text-center {
  text-align: center !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
::after,
::before {
  box-sizing: inherit;
}
user agent stylesheet div {
  display: block;
}
.flex-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
.p-b-112 {
  padding-bottom: 112px;
}
.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid rgb(112, 111, 211); /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  align-items: center;
  position: relative;
  display: inline-block;
  left: 28%;
  right: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
a {
  color: rgb(112, 111, 211);
}

.invalid-feedback {
  text-align: center;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
  display: block !important;
}

.wrap-login100 {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.button-criar-conta {
  cursor: pointer;
}

.close-modal-logim {
  position: absolute;
  right: 5%;
  top: 3%;
  font-size: 20px;
  cursor: pointer;
}

.login100-form-title {
    display: block;
    /* font-family: SourceSansPro-Bold; */
    font-size: 30px;
    color: #4b2354;
    line-height: 1.2;
    text-align: center;
}
/* ; */
.p-b-37 {
    padding-bottom: 37px;
}
/* @media (max-width: 480px)
.wrap-login100 {
    padding-left: 15px;
    padding-right: 15px;
} */
.wrap-login100 {
    width: 390px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 20px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 3px 20px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 3px 20px 0 rgb(0 0 0 / 10%);
    -o-box-shadow: 0 3px 20px 0 rgba(0,0,0,.1);
    -ms-box-shadow: 0 3px 20px 0 rgba(0,0,0,.1);
}
.p-r-55 {
    padding-right: 55px;
}
.p-l-55 {
    padding-left: 55px;
}
.p-b-30 {
    padding-bottom: 30px;
}
.p-t-80 {
    padding-top: 80px;
}
.login100-form {
    width: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: inherit;
}
form {
    display: block;
    margin-top: 0em;
}
.validate-input {
    position: relative;
}

.wrap-input100 {
    width: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 20px;
}
.m-b-20 {
    margin-bottom: 20px;
}
.input100 {
    /* font-family: SourceSansPro-Bold; */
    font-size: 16px;
    color: #4b2354;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 62px;
    background: 0 0;
    padding: 0 20px 0 23px;
}
input {
    outline: none;
    border: none;
}
input:disabled {    
    background: #b7b7b7;
    border-radius: 10px;
    color: white;
    cursor: progress;
  }
button:disabled {    
    background: #b7b7b7;
    border-radius: 10px;
    color: white;
    cursor: progress;
    }
.focus-input100 {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 20px;
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 5px 30px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
    -o-box-shadow: 0 5px 30px 0 rgba(0,0,0,.1);
    -ms-box-shadow: 0 5px 30px 0 rgba(0,0,0,.1);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
}
.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.login100-form-btn {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 160px;
    height: 50px;
    background-color: rgb(112, 111, 211);
    border-radius: 25px;
    /* font-family: SourceSansPro-SemiBold; */
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    box-shadow: 0 10px 30px 0 rgb(189 89 212 / 50%);
    -moz-box-shadow: 0 10px 30px 0 rgb(112, 111, 211);
    -webkit-box-shadow: 0 10px 30px 0 rgb(112, 111, 211);
    -o-box-shadow: 0 10px 30px 0 rgb(112, 111, 211);
    -ms-box-shadow: 0 10px 30px 0 rgb(112, 111, 211);
}
button {
    outline: none!important;
    border: none;
    background: 0 0;
}
[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button;
}
button, select {
    text-transform: none;
}
button, input {
    overflow: visible;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
[role=button], a, area, button, input, label, select, summary, textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: inherit;
}
user agent stylesheet
button {
    appearance: auto;
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark(black, white);
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: center;
    align-items: flex-start;
    cursor: default;
    background-color: -internal-light-dark(rgb(239, 239, 239), rgb(59, 59, 59));
    box-sizing: border-box;
    margin: 0em;
    font: 400 13.3333px Arial;
    padding: 1px 6px;
    border-width: 2px;
    border-style: outset;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
}
.text-center {
    text-align: center;
}
.p-b-20 {
    padding-bottom: 20px;
}
.p-t-57 {
    padding-top: 57px;
}
.text-center {
    text-align: center!important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: inherit;
}
user agent stylesheet
div {
    display: block;
}
.flex-c {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}
.p-b-112 {
    padding-bottom: 112px;
}
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid rgb(112, 111, 211); /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    align-items: center;
    position: relative;
    display: inline-block;
    left: 28%;
    right: auto;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  a{
      color: rgb(112, 111, 211);
  }


.invalid-feedback {
    text-align: center;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
    display: block !important;
}

.wrap-login100{
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.button-criar-conta{
    cursor: pointer;
}

.close-modal-logim{
    position: absolute;
    right: 5%;
    top: 3%;
    font-size: 20px;
    cursor: pointer;
}

#select-hospial {
    padding: 7px;
    border-radius: 5px;
}

.search-button{
    border-radius: 0px 4px 4px 0px !important;
}

.search-input{
    /* font-size: 1.5rem; */
    border-radius: 4px 0px 0px 4px !important;
}

#container {
    top: 40px;
    max-width: 500px;
    height: 50%;
    margin: 0 auto;
    border-radius: 10px;
}

#container .modal-content {
    height: auto !important;
}

.app-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.search-container {
display: flex;
width: 100%;
max-width: 400px; /* Defina a largura máxima desejada para o container de pesquisa */
}

.search-input {
flex: 1;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}

.search-button {
padding: 10px;
/* background-color: #007bff; */
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}

.form-control{
    width: -webkit-fill-available;
}
.container_form {
    width: 100%;
    margin-bottom: 20px;
}

.form_form {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between; */
}

.row_form {
    display: flex;
    flex-wrap: wrap;
}

.col_form {
    flex: 1;
    margin-right: 10px;
    /* Espaçamento entre as colunas */
}

.form-group_form {
    margin-bottom: 15px;
}

.label_form {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.select_form,
.input_form {
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.button_form {
    margin-top: 40px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button_form:hover {
    background-color: #0056b3;
    color: black;
}

@media screen and (max-width: 600px) {
    .col_form {
        flex: 0 0 calc(100% - 10px);
        width: 100%;
    }

    .select_form,
    .input_form {
        width: 100%;
    }

    .button_form {
        width: 100%;
        margin-bottom: 40px;
    }
}
.topics__list {
  display: flex;
  flex-direction: row;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.topics__item,
.topics__list_list {
  flex: 1;
}

/* @media screen and (max-width: 668px) { */
.topics {
  border-left: 6px solid transparent;
  border-image: linear-gradient(to bottom, #f4ecda, #f4edda);
  border-image-slice: 1;
  border-bottom: 2px solid #ccc;
  margin-top: 20px;
  cursor: pointer;
}

.topics__list {
  display: flex;
  flex-direction: column;
}

.topics__item_name,
.topics__item_conv {
  padding: 2px;
  border-radius: 5px;
  margin: 5px 10px;
}

.topics__item_hosp,
.topics__item_proc {
  padding: 2px;
  border-radius: 5px;
  margin: 5px 10px;
}

.topics__list p {
  /* width: fit-content; */
  margin-left: 10px;
  /* padding: 0px 0px; */
}

.topics__list_list {
  display: flex;
  justify-content: space-around;
}

.topics__item_statu {
  background-color: #c5cfc6;
  padding: 2px;
  border-radius: 5px;
  margin: 5px 10px;
}

.topics__item_date {
  margin: 5px 10px;
}

.topics__item_numb {
  margin: 5px 10px;
}
/* } */


.modalStyle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 16px 32px 24px;
    border-radius: 8px;
    outline: none;
    text-align: center;
}

.buttonStyle {
    margin-top: 16px;
    width: 100%;
    background-color: #1976d2;
    color: white;
    border: none;
}
.bg-light {
    background-color: #ffffff!important;
}
.navbar{
    color: rgb(112, 111, 211) !important;
    font-weight: 500;
    height: 100px;
}
.navbar-brand{
    color: rgb(112, 111, 211)!important;
    font-weight: 500;
}

.nome-estabelecimento .navbar-brand{
    height: 3em;
    /* display: flex; */
    /* align-items: center; */
}

.fadeIn{
    height: 150px;
    -webkit-transition: height .3s ease;
    overflow: hidden;
    color: #a3a3a3;
}
.fadeOut{
    height: 0px;
    -webkit-transition: height .3s ease;
    overflow: hidden;
}
.open-day{
    height: 10px;
    background-color: #51df51;
    margin: 0px 10px;
    width: 10px;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    width: 10px;
}
.close-day{    
    height: 10px;
    background-color: red;
    width: 10px;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    width: 10px;
    margin: 0px 10px;
}

.openOrClose{
    cursor: pointer;
    font-weight: bold;
}

.icon-clock{
    margin-top: -3px;
    margin-right: 3px;  
}
.carou{
  top: 48%;
  font-family: sans-serif;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  /* height: 10vh; */
  /* background-color: black; */
  /* top: 13%; */
  /* position: fixed; */
  z-index: 1000;
  width: 100%;
  margin: 0 0px 0px -6px;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px; */
  background-color: white;
}
h1{
  text-align: center;
}
.App {
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10vh;
  /* background-color: black; */
  top: 6%;
  position: fixed;
  z-index: 1000;
  width: 100%;
  margin: 0;box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  background-color: white;
}

.rec-carousel-item:focus {
  outline: none;
  box-shadow: inset 0 0 1px 0px violet;
}
/* .rec .rec-pagination {
    display: none;
} */
.rec-dot{
  border-radius: 0% !important;
  height: 3px !important;
  width: 15px !important;
  box-shadow: 0 0 1px 1px rgba(0,0,0,0.5) !important;
}
.rec-arrow-right{
  display: none;
}
.rec-arrow-left{
  display: none;
}
  
.firstCard {
  display: block;
  position: absolute;
  /* top: 21%; */
  width: 100%;
  left: 0px;
}
.selected{
  color: black;
  text-decoration: underline;
}
hr{
  width: 90%;
}
img{
  margin: 0;
  position: relative;
  top: 50%;
  transform: translate(0, 50%);
  border-radius: 5px;
}
h2{
  padding-left: 20px;
  padding-right: 34px;
  text-align: left;
  font-size: 1.425rem;
  font-weight: 600;
  color: #8483d9;
}
h5{
  font-weight: 500;  
  font-size: 19px;
}
h4{
  font-weight: 600;  
}
.container{
  padding-right: 10px !important;
  padding-left: 10px !important;
}
.card-body{
  padding: 10px !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.jumbotron{
  padding: 0px;
}
.criadorPor{
  text-align: center;
  padding-bottom: 15%;
}
.App {
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;  
  height: 57px;
  position: fixed;
  z-index: 1000;
  width: 100%;
  margin: 0;box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  background-color: white;
}

.activeMenu{    border-bottom: 2px solid #706fd3;
}
.activeItemMenu{    
  color: #706fd3 !important;
}
.rec-carousel-item:focus {
  outline: none;
  box-shadow: inset 0 0 1px 0px violet;
}
/* .rec .rec-pagination {
    display: none;
} */
.rec-dot{
  border-radius: 0% !important;
  height: 3px !important;
  width: 15px !important;
  box-shadow: 0 0 1px 1px rgba(0,0,0,0.5) !important;
}
.rec-arrow-right{
  display: none;
}
.rec-arrow-left{
  display: none;
}
.rec-carousel-item{  
  height: 3em;
  display: flex;
  align-items: center 
}
.item {
    font-family: sans-serif;
    align-items: center;
    justify-content: center;
    width: 100%;
    vertical-align: middle;
    color: #d4d4d5;    
    font-size: 17px;
    font-weight: 600;
    text-align: center;    
    bottom: auto;       
}  
h5{
  color: #706fd3;
}
h4{
  color: #706fd3;
}
.card {
  border: 0px;
  /* box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.12);  margin-bottom: 10px; */

  border-bottom: 1px solid rgb(112 111 211 / 22%);
  /* border-radius: 5px; */
  /* border-top: 1px solid rgb(112 111 211 / 22%); */
  padding-bottom: 3%;
  padding-top: 3%;
}
/* .table-responsive {
    overflow-x: auto;
}

.table_tb {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

th,
td {

    padding: 8px;
    border: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

.btn_group a {
    color: #212529;
}

.edit {
    margin-right: 4px;
    background-color: green;
    padding: 10px;
    padding: 0.6rem;
    border-radius: 5px;
    color: white;
}

.delet {
    margin-right: 4px;
    background-color: red;
    padding: 10px;
    padding: 0.6rem;
    border-radius: 5px;
    color: white;
    border: none;
}

@media (max-width: 768px) {
    .table-responsive {
      overflow-x: auto;
    }
  
    .table_tb {
      width: 100%;
      border-collapse: collapse;
    }
  
    .table_tb thead {
      display: none; 
    }
  
    .table_tb tbody tr {
      display: block;
      border-bottom: 1px solid #ccc;
      margin-bottom: 10px;
    }
  
    .table_tb tbody td {
      display: block;
      text-align: left;
      padding: 10px;
    }
  
    .table_tb tbody td::before {
      content: attr(data-label); 
      font-weight: bold;
      float: left;
      margin-right: 10px;
    }
  }
   */

.pagination-custom .page-link::after {
  display: none !important;
}
.pagination-container {
  display: flex;
  justify-content: center;
}

.error {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#img-cordao {
  width: 100%;
  transform: translate(0, 0);
}

@media (max-width: 768px){
  #img-cordao {
    margin-bottom: 15%;
    width: 140%;
  }
}

.error > p:nth-child(2) {
  color: #807ff7;
  text-align: center;
  font-size: 30px;
}

.error > p:nth-child(3) {
  color: #2C3E50;
  text-align: center;
  margin: 0;
  font-size: 20px;
}

@media (max-width: 768px){
  .error > p:nth-child(2) {
    font-weight: bold;
    text-align: center;
    color: #807ff7;
    font-size: 20px;
  }

  .error > p:nth-child(3) {
    color: #2C3E50;
    text-align: center;
    margin: 0;
    font-size: 15px;
  }
}

#img-mesas {
  width: 30%;
  transform: translate(0, 25%);
}

@media (max-width: 768px){
  #img-mesas {
    width: 80%;
  }
}
