body {
    margin: 0;
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #ffffff;
}

input {
    border-color: gray;
}

input:required:valid {
    border-color: green;
}

input:required:invalid {
    border-color: red;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #E08752;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #E08752;
    cursor: pointer;
}

.bg-cf-primary {
    color: whitesmoke;
    background-color: #E08752;
}

.border-cf-primary {
    border-color: #E08752 !important;
}

.cf-primary {
    color: #E08752;
}

.cf-date-input {
    position: relative;
    outline: none;
    border: solid 1px rgb(189, 189, 189);
    border-radius: 5px;
    margin-top: 2px;
    margin-bottom: 2px;
    color: rgb(169, 169, 169);
}

@keyframes blip {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
}
  
.blip {
    display: inline-block;
    animation: blip 1s infinite ease-in-out;
}

/* .cf-date-input::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
} */
