/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .pac-container:after{
    content:none !important;
}

.trufa-isa-info, .trufa-isa-success, .trufa-isa-warning, .trufa-isa-error {
margin: 10px 0px;
padding:12px;
 
}
.trufa-isa-info {
    color: #00529B;
    background-color: #BDE5F8;
}
.trufa-isa-success {
    color: #4F8A10;
    background-color: #DFF2BF;
}
.trufa-isa-warning {
    color: #9F6000;
    background-color: #FEEFB3;
}
.trufa-isa-error {
    color: #D8000C;
    background-color: #FFD2D2;
}
.trufa-isa-info i, .trufa-isa-success i, .trufa-isa-warning i, .trufa-isa-error i {
    margin:10px 22px;
    font-size:2em;
    vertical-align:middle;
}

.trufa-address-within-delivery-zone {
    color: #4F8A10;
    background-color: #DFF2BF;

}

.trufa-address-outside-delivery-zone {
    color: #9F6000;
    background-color: #FF9966;
}

.trufa-address-not-located {
    color: #D8000C;
    background-color: #FFD2D2;
}


/* Tip box selection */
.tip-toggle {
    display: flex;
    margin-bottom: 36px;
    overflow: hidden;
}

.tip-toggle input {
    position: absolute; /* !important; */
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.tip-toggle label {
    background-color: #e4e4e4;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    line-height: 1;
    text-align: center;
    padding: 8px 16px;
    margin-right: -1px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease-in-out;
}

.tip-toggle label:hover {
    cursor: pointer;
}

.tip-toggle input:checked + label {
    background-color: #a5dc86;
    box-shadow: none;
}

.tip-toggle label:first-of-type {
    border-radius: 4px 0 0 4px;
}

.tip-toggle label:last-of-type {
    border-radius: 0 4px 4px 0;
}


/* tip toggle indicator below */
/*
.tip-toggle {
  position: relative;
  width: 14rem;
  padding: 0 1rem;
  font-family: verdana;

  &:before {
    content: '  ';
    position: absolute;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 3rem;
    background: #000;
    border-radius: 30px;
  }

  &__label {
    display: inline-block;
    width: 2rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: color 200ms ease-out;
    &:hover {
      color: white;
    }
  }

  &__indicator {
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: -.5rem;
    left: 0;
    background: blue;
    border-radius: 50%;
    transition: transform 600ms cubic-bezier(.02,.94,.09,.97),
    background 300ms cubic-bezier(.17,.67,.14,1.03);
    transform: translate3d(1rem,0,0);
  }

  input[type=radio]:checked ~ .tip-toggle__indicator {
    background: PaleGreen;
    transform: translate3d(1.2rem,0,0);
  }
  input#20%:checked ~ tip_toggle__indicator {
    background: MediumTurquoise;
    transform: translate3d(5.5rem,0,0);
  }
  input#25%:checked ~ tip_toggle__indicator {
    background: PaleVioletRed;
    transform: translate3d(10.6rem,0,0);
  }
  input[type="radio"] {
    &:not(:checked),
    &:checked {
      display: none;
    }
  }
}
*/

