.rc-slider {
  position: relative;
  height: 14px;
  padding: 5px 0;
  width: 100%;
  border-radius: 6px;
  -ms-touch-action: none;
      touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-rail {
  position: absolute;
  width: 100%;
  background-color: #e9e9e9;
  height: 4px;
  border-radius: 6px;
}
.rc-slider-track {
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 6px;
  background-color: #abe2fb;
}
.rc-slider-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  cursor: pointer;
  cursor: -webkit-grab;
  margin-top: -5px;
  cursor: grab;
  border-radius: 50%;
  border: solid 2px #96dbfa;
  background-color: #fff;
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}
.rc-slider-handle:focus {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
  outline: none;
}
.rc-slider-handle-click-focused:focus {
  border-color: #96dbfa;
  box-shadow: unset;
}
.rc-slider-handle:hover {
  border-color: #57c5f7;
}
.rc-slider-handle:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}
.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999;
}
.rc-slider-mark-text-active {
  color: #666;
}
.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}
.rc-slider-dot-active {
  border-color: #96dbfa;
}
.rc-slider-dot-reverse {
  margin-left: 0;
  margin-right: -4px;
}
.rc-slider-disabled {
  background-color: #e9e9e9;
}
.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}
.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  border-color: #ccc;
  box-shadow: none;
  background-color: #fff;
  cursor: not-allowed;
}
.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}
.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}
.rc-slider-vertical .rc-slider-rail {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-track {
  left: 5px;
  bottom: 0;
  width: 4px;
}
.rc-slider-vertical .rc-slider-handle {
  margin-left: -5px;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-leave {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  transform: scale(0, 0);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.rc-slider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}
@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}
.rc-slider-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip-hidden {
  display: none;
}
.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0;
}
.rc-slider-tooltip-inner {
  padding: 6px 2px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
}
.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}

.multiple-enter{opacity:0;transform:translate(-250px, 0);transform:translate3d(-250px, 0, 0)}.multiple-enter.multiple-enter-active{opacity:1;transition:opacity 1s ease;transform:translate(0, 0);transform:translate3d(0, 0, 0);transition-property:transform, opacity;transition-duration:500ms;transition-timing-function:cubic-bezier(0.175, 0.665, 0.32, 1),linear}.multiple-leave{opacity:1;transform:translate(0, 0, 0);transform:translate3d(0, 0, 0);transition-property:transform, opacity;transition-duration:300ms;transition-timing-function:cubic-bezier(0.175, 0.665, 0.32, 1),linear}.multiple-leave.multiple-leave-active{opacity:0;transform:translate(250px, 0);transform:translate3d(250px, 0, 0)}

.sk-rotating-plane{width:40px;height:40px;background-color:#00b3b3;margin:40px auto;animation:sk-rotatePlane 1.2s infinite ease-in-out}@keyframes sk-rotatePlane{0%{transform:perspective(120px) rotateX(0deg) rotateY(0deg)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.sk-double-bounce{width:40px;height:40px;position:relative;margin:40px auto}.sk-double-bounce .sk-child{width:100%;height:100%;border-radius:50%;background-color:#00b3b3;opacity:0.6;position:absolute;top:0;left:0;animation:sk-doubleBounce 2.0s infinite ease-in-out}.sk-double-bounce .sk-double-bounce2{animation-delay:-1.0s}@keyframes sk-doubleBounce{0%,100%{transform:scale(0)}50%{transform:scale(1)}}.sk-wave{margin:40px auto;width:50px;height:40px;text-align:center;font-size:10px}.sk-wave .sk-rect{background-color:#00b3b3;height:100%;width:6px;display:inline-block;animation:sk-waveStretchDelay 1.2s infinite ease-in-out}.sk-wave .sk-rect1{animation-delay:-1.2s}.sk-wave .sk-rect2{animation-delay:-1.1s}.sk-wave .sk-rect3{animation-delay:-1s}.sk-wave .sk-rect4{animation-delay:-.9s}.sk-wave .sk-rect5{animation-delay:-.8s}@keyframes sk-waveStretchDelay{0%,40%,100%{transform:scaleY(0.4)}20%{transform:scaleY(1)}}.sk-wandering-cubes{margin:40px auto;width:40px;height:40px;position:relative}.sk-wandering-cubes .sk-cube{background-color:#00b3b3;width:10px;height:10px;position:absolute;top:0;left:0;animation:sk-wanderingCube 1.8s ease-in-out -1.8s infinite both}.sk-wandering-cubes .sk-cube2{animation-delay:-.9s}@keyframes sk-wanderingCube{0%{transform:rotate(0deg)}25%{transform:translateX(30px) rotate(-90deg) scale(0.5)}50%{transform:translateX(30px) translateY(30px) rotate(-179deg)}50.1%{transform:translateX(30px) translateY(30px) rotate(-180deg)}75%{transform:translateX(0) translateY(30px) rotate(-270deg) scale(0.5)}100%{transform:rotate(-360deg)}}.sk-spinner-pulse{width:40px;height:40px;margin:40px auto;background-color:#00b3b3;border-radius:100%;animation:sk-pulseScaleOut 1.0s infinite ease-in-out}@keyframes sk-pulseScaleOut{0%{transform:scale(0)}100%{transform:scale(1);opacity:0}}.sk-chasing-dots{margin:40px auto;width:40px;height:40px;position:relative;text-align:center;animation:sk-chasingDotsRotate 2s infinite linear}.sk-chasing-dots .sk-child{width:60%;height:60%;display:inline-block;position:absolute;top:0;background-color:#00b3b3;border-radius:100%;animation:sk-chasingDotsBounce 2s infinite ease-in-out}.sk-chasing-dots .sk-dot2{top:auto;bottom:0;animation-delay:-1s}@keyframes sk-chasingDotsRotate{100%{transform:rotate(360deg)}}@keyframes sk-chasingDotsBounce{0%,100%{transform:scale(0)}50%{transform:scale(1)}}.sk-three-bounce{margin:40px auto;width:80px;text-align:center}.sk-three-bounce .sk-child{width:20px;height:20px;background-color:#00b3b3;border-radius:100%;display:inline-block;animation:sk-three-bounce 1.4s ease-in-out 0s infinite both}.sk-three-bounce .sk-bounce1{animation-delay:-.32s}.sk-three-bounce .sk-bounce2{animation-delay:-.16s}@keyframes sk-three-bounce{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}.sk-circle{margin:40px auto;width:40px;height:40px;position:relative}.sk-circle .sk-child{width:100%;height:100%;position:absolute;left:0;top:0}.sk-circle .sk-child:before{content:'';display:block;margin:0 auto;width:15%;height:15%;background-color:#00b3b3;border-radius:100%;animation:sk-circleBounceDelay 1.2s infinite ease-in-out both}.sk-circle .sk-circle2{transform:rotate(30deg)}.sk-circle .sk-circle3{transform:rotate(60deg)}.sk-circle .sk-circle4{transform:rotate(90deg)}.sk-circle .sk-circle5{transform:rotate(120deg)}.sk-circle .sk-circle6{transform:rotate(150deg)}.sk-circle .sk-circle7{transform:rotate(180deg)}.sk-circle .sk-circle8{transform:rotate(210deg)}.sk-circle .sk-circle9{transform:rotate(240deg)}.sk-circle .sk-circle10{transform:rotate(270deg)}.sk-circle .sk-circle11{transform:rotate(300deg)}.sk-circle .sk-circle12{transform:rotate(330deg)}.sk-circle .sk-circle2:before{animation-delay:-1.1s}.sk-circle .sk-circle3:before{animation-delay:-1s}.sk-circle .sk-circle4:before{animation-delay:-.9s}.sk-circle .sk-circle5:before{animation-delay:-.8s}.sk-circle .sk-circle6:before{animation-delay:-.7s}.sk-circle .sk-circle7:before{animation-delay:-.6s}.sk-circle .sk-circle8:before{animation-delay:-.5s}.sk-circle .sk-circle9:before{animation-delay:-.4s}.sk-circle .sk-circle10:before{animation-delay:-.3s}.sk-circle .sk-circle11:before{animation-delay:-.2s}.sk-circle .sk-circle12:before{animation-delay:-.1s}@keyframes sk-circleBounceDelay{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}.sk-cube-grid{width:40px;height:40px;margin:40px auto}.sk-cube-grid .sk-cube{width:33.33%;height:33.33%;background-color:#00b3b3;float:left;animation:sk-cubeGridScaleDelay 1.3s infinite ease-in-out}.sk-cube-grid .sk-cube1{animation-delay:.2s}.sk-cube-grid .sk-cube2{animation-delay:.3s}.sk-cube-grid .sk-cube3{animation-delay:.4s}.sk-cube-grid .sk-cube4{animation-delay:.1s}.sk-cube-grid .sk-cube5{animation-delay:.2s}.sk-cube-grid .sk-cube6{animation-delay:.3s}.sk-cube-grid .sk-cube7{animation-delay:0.0s}.sk-cube-grid .sk-cube8{animation-delay:.1s}.sk-cube-grid .sk-cube9{animation-delay:.2s}@keyframes sk-cubeGridScaleDelay{0%,70%,100%{transform:scale3D(1, 1, 1)}35%{transform:scale3D(0, 0, 1)}}.sk-fading-circle{margin:40px auto;width:40px;height:40px;position:relative}.sk-fading-circle .sk-circle{width:100%;height:100%;position:absolute;left:0;top:0}.sk-fading-circle .sk-circle:before{content:'';display:block;margin:0 auto;width:15%;height:15%;background-color:#00b3b3;border-radius:100%;animation:sk-circleFadeDelay 1.2s infinite ease-in-out both}.sk-fading-circle .sk-circle2{transform:rotate(30deg)}.sk-fading-circle .sk-circle3{transform:rotate(60deg)}.sk-fading-circle .sk-circle4{transform:rotate(90deg)}.sk-fading-circle .sk-circle5{transform:rotate(120deg)}.sk-fading-circle .sk-circle6{transform:rotate(150deg)}.sk-fading-circle .sk-circle7{transform:rotate(180deg)}.sk-fading-circle .sk-circle8{transform:rotate(210deg)}.sk-fading-circle .sk-circle9{transform:rotate(240deg)}.sk-fading-circle .sk-circle10{transform:rotate(270deg)}.sk-fading-circle .sk-circle11{transform:rotate(300deg)}.sk-fading-circle .sk-circle12{transform:rotate(330deg)}.sk-fading-circle .sk-circle2:before{animation-delay:-1.1s}.sk-fading-circle .sk-circle3:before{animation-delay:-1s}.sk-fading-circle .sk-circle4:before{animation-delay:-.9s}.sk-fading-circle .sk-circle5:before{animation-delay:-.8s}.sk-fading-circle .sk-circle6:before{animation-delay:-.7s}.sk-fading-circle .sk-circle7:before{animation-delay:-.6s}.sk-fading-circle .sk-circle8:before{animation-delay:-.5s}.sk-fading-circle .sk-circle9:before{animation-delay:-.4s}.sk-fading-circle .sk-circle10:before{animation-delay:-.3s}.sk-fading-circle .sk-circle11:before{animation-delay:-.2s}.sk-fading-circle .sk-circle12:before{animation-delay:-.1s}@keyframes sk-circleFadeDelay{0%,39%,100%{opacity:0}40%{opacity:1}}.sk-folding-cube{margin:40px auto;width:40px;height:40px;position:relative;transform:rotateZ(45deg)}.sk-folding-cube .sk-cube{float:left;width:50%;height:50%;position:relative;transform:scale(1.1)}.sk-folding-cube .sk-cube:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:#00b3b3;animation:sk-foldCubeAngle 2.4s infinite linear both;transform-origin:100% 100%}.sk-folding-cube .sk-cube2{transform:scale(1.1) rotateZ(90deg)}.sk-folding-cube .sk-cube3{transform:scale(1.1) rotateZ(180deg)}.sk-folding-cube .sk-cube4{transform:scale(1.1) rotateZ(270deg)}.sk-folding-cube .sk-cube2:before{animation-delay:.3s}.sk-folding-cube .sk-cube3:before{animation-delay:.6s}.sk-folding-cube .sk-cube4:before{animation-delay:.9s}@keyframes sk-foldCubeAngle{0%,10%{transform:perspective(140px) rotateX(-180deg);opacity:0}25%,75%{transform:perspective(140px) rotateX(0deg);opacity:1}90%,100%{transform:perspective(140px) rotateY(180deg);opacity:0}}.react-vis-magic-css-import-rule{display:inherit}.rv-treemap{font-size:12px;position:relative}.rv-treemap__leaf{overflow:hidden;position:absolute}.rv-treemap__leaf--circle{align-items:center;border-radius:100%;display:flex;justify-content:center}.rv-treemap__leaf__content{overflow:hidden;padding:10px;text-overflow:ellipsis}.rv-xy-plot{color:#c3c3c3;position:relative}.rv-xy-plot canvas{pointer-events:none}.rv-xy-plot .rv-xy-canvas{pointer-events:none;position:absolute}.rv-xy-plot__inner{display:block}.rv-xy-plot__axis__line{fill:none;stroke-width:2px;stroke:#e6e6e9}.rv-xy-plot__axis__tick__line{stroke:#e6e6e9}.rv-xy-plot__axis__tick__text{fill:#6b6b76;font-size:11px}.rv-xy-plot__axis__title text{fill:#6b6b76;font-size:11px}.rv-xy-plot__grid-lines__line{stroke:#e6e6e9}.rv-xy-plot__circular-grid-lines__line{fill-opacity:0;stroke:#e6e6e9}.rv-xy-plot__series,.rv-xy-plot__series path{pointer-events:all}.rv-xy-plot__circular-grid-lines__line{fill-opacity:0;stroke:#e6e6e9}.rv-xy-plot__series,.rv-xy-plot__series path{pointer-events:all}.rv-xy-plot__series--line{fill:none;stroke:#000;stroke-width:2px}.rv-crosshair{position:absolute;font-size:11px;pointer-events:none}.rv-crosshair__line{background:#47d3d9;width:1px}.rv-crosshair__inner{position:absolute;text-align:left;top:0}.rv-crosshair__inner__content{border-radius:4px;background:#3a3a48;color:#fff;font-size:12px;padding:7px 10px;box-shadow:0 2px 4px rgba(0,0,0,0.5)}.rv-crosshair__inner--left{right:4px}.rv-crosshair__inner--right{left:4px}.rv-crosshair__title{font-weight:bold;white-space:nowrap}.rv-crosshair__item{white-space:nowrap}.rv-hint{position:absolute;pointer-events:none}.rv-hint__content{border-radius:4px;padding:7px 10px;font-size:12px;background:#3a3a48;box-shadow:0 2px 4px rgba(0,0,0,0.5);color:#fff;text-align:left;white-space:nowrap}.rv-discrete-color-legend{box-sizing:border-box;overflow-y:auto;font-size:12px}.rv-discrete-color-legend.horizontal{white-space:nowrap}.rv-discrete-color-legend-item{color:#3a3a48;border-radius:1px;padding:9px 10px}.rv-discrete-color-legend-item.horizontal{display:inline-block}.rv-discrete-color-legend-item.horizontal .rv-discrete-color-legend-item__title{margin-left:0;display:block}.rv-discrete-color-legend-item__color{background:#dcdcdc;display:inline-block;height:2px;vertical-align:middle;width:14px}.rv-discrete-color-legend-item__title{margin-left:10px}.rv-discrete-color-legend-item.disabled{color:#b8b8b8}.rv-discrete-color-legend-item.clickable{cursor:pointer}.rv-discrete-color-legend-item.clickable:hover{background:#f9f9f9}.rv-search-wrapper{display:flex;flex-direction:column}.rv-search-wrapper__form{flex:0}.rv-search-wrapper__form__input{width:100%;color:#a6a6a5;border:1px solid #e5e5e4;padding:7px 10px;font-size:12px;box-sizing:border-box;border-radius:2px;margin:0 0 9px;outline:0}.rv-search-wrapper__contents{flex:1;overflow:auto}.rv-continuous-color-legend{font-size:12px}.rv-continuous-color-legend .rv-gradient{height:4px;border-radius:2px;margin-bottom:5px}.rv-continuous-size-legend{font-size:12px}.rv-continuous-size-legend .rv-bubbles{text-align:justify;overflow:hidden;margin-bottom:5px;width:100%}.rv-continuous-size-legend .rv-bubble{background:#d8d9dc;display:inline-block;vertical-align:bottom}.rv-continuous-size-legend .rv-spacer{display:inline-block;font-size:0;line-height:0;width:100%}.rv-legend-titles{height:16px;position:relative}.rv-legend-titles__left,.rv-legend-titles__right,.rv-legend-titles__center{position:absolute;white-space:nowrap;overflow:hidden}.rv-legend-titles__center{display:block;text-align:center;width:100%}.rv-legend-titles__right{right:0}.rv-radial-chart .rv-xy-plot__series--label{pointer-events:none}*{font-family:'Roboto'}.flex-center{align-content:center;align-items:center}body,html{margin:0;padding:0}html{background-color:#eeeeee}.provider-alert-table table{overflow:visible}.provider-alert-table>div>div>div>div>div>div{overflow:visible}.provider-alert-table td{background-color:white}.provider-alert-table th:nth-child(2){width:20%}.provider-alert-table th:nth-child(4){width:40%}.provider-alert-table th:nth-child(6){width:5%}.provider-alert-table td{white-space:initial !important}.provider-alert-table-detail table{margin:0 -24px 16px 0px}.provider-alert-table-detail th:nth-child(1){width:20%}.provider-alert-table-detail th:nth-child(2){width:20%}.provider-alert-table-detail th:nth-child(3){width:20%}.provider-alert-table-detail th{border:none !important}.provider-alert-table-detail tr{height:32px}.provider-alert-table-detail td{border:none !important}.Chat ::placeholder{font-size:13px;color:#aeaeae}.change-request-form-table th,.change-request-form-table td{border:1px solid black;padding:5px 10px 5px 10px}.date-range-picker input{cursor:pointer}.vital-table>div>div:nth-child(1){overflow:visible}.vital-table table{overflow:visible}.vital-table thead th{color:#999;border-bottom:none;font-weight:normal;letter-spacing:0.7px;bottom:-8px}.vital-table thead tr{height:32px}.vital-table td{background-color:white}.vital-critical{background:linear-gradient(to top, #cb3d2d, #f96844)}.vital-normal{background:linear-gradient(to bottom, #3dd367, #35c07b)}.vital-abnormal{background:linear-gradient(to top, #ff7e23, #fdb618)}.vital-missed{background:linear-gradient(to top, #b5ada6, #d7d2cb)}#pop-up::-webkit-scrollbar{width:10px;border-radius:8px;background-color:transparent}#pop-up::-webkit-scrollbar-track{background:transparent}#pop-up::-webkit-scrollbar-thumb{background:#aeaeae;border-radius:8px;border:2px solid white}@keyframes pulse{0%{transform:scale(1, 1);opacity:1}50%{transform:scale(1.2, 1.5);opacity:0.5}100%{opacity:0}}

.milo-btn-blue{background-color:#2979ff !important;color:#fff !important;height:40px !important;font-size:13.6px !important;letter-spacing:1.25px !important;font-weight:500 !important;vertical-align:bottom !important;text-transform:none !important;border:1.5px solid #2979ff !important;border-radius:5px !important}.milo-btn-blue:disabled{background-color:#9E9E9E !important;color:#fff !important;height:40px !important;font-size:13.6px !important;letter-spacing:1.25px !important;font-weight:500 !important;vertical-align:bottom !important;text-transform:none !important;border:1px solid #9E9E9E !important;border-radius:5px !important}.milo-btn-blue-2{background-color:#2979ff !important;color:#fff !important;height:30px !important;width:103px !important;letter-spacing:1.25px !important;font-weight:500 !important;vertical-align:bottom !important;text-transform:none !important;border:1.5px solid #2979ff !important;border-radius:20px !important}.milo-btn-blue-3{background-color:#3333CC !important;color:#fff !important;line-height:16px !important;letter-spacing:1.25px !important;font-size:14px !important;font-weight:500 !important;vertical-align:bottom !important;text-transform:none !important;border:1.5px solid #3333CC !important;border-radius:4px !important;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2)}.milo-btn-orange{background-color:#ff5100 !important;color:#fff !important;height:40px !important;font-size:13.6px !important;letter-spacing:1.25px !important;font-weight:500 !important;vertical-align:bottom !important;text-transform:none !important;border:1.5px solid #ff5100 !important;border-radius:5px !important}.milo-btn-orange:disabled{background-color:#e0e0e0 !important;border:1px solid #e0e0e0 !important;border-radius:5px !important;color:#9e9e9e !important}.milo-btn-white{background-color:#fff !important;color:#212121 !important;height:40px !important;font-size:13.6px !important;letter-spacing:1.25px !important;font-weight:500 !important;vertical-align:bottom !important;text-transform:none !important;border:1px solid #fff !important;border-radius:5px !important}.milo-btn-white:disabled{background-color:#e0e0e0 !important;border:1px solid #e0e0e0 !important;border-radius:5px !important;color:#969393 !important}.milo-btn-red{background-color:#f96666 !important;color:#fff !important;height:40px !important;font-size:13.6px !important;letter-spacing:1.25px !important;font-weight:500 !important;vertical-align:bottom !important;text-transform:none !important;border:1.5px solid #f96666 !important;border-radius:5px !important}.milo-btn-submit{background-color:#ff5100 !important;height:50px !important;text-transform:none !important;font-size:1.05rem !important;letter-spacing:1.25px !important;border-radius:10px !important}.milo-btn-submit-medium-outline{background-color:#FFFFFF !important;color:#FF5722 !important;height:40px !important;text-transform:none !important;font-size:14px !important;letter-spacing:1.25px !important;border-radius:4px !important}.milo-btn-submit-medium{background-color:#ff5100 !important;height:40px !important;text-transform:none !important;font-size:14px !important;letter-spacing:1.25px !important;border-radius:4px !important}.milo-btn-agree{background-color:#ff5100 !important;width:161px !important;height:40px !important;text-transform:none !important;font-size:14px !important;letter-spacing:1.25px !important;border-radius:4px !important}.milo-btn-grey{background-color:#cecece !important;height:50px !important;text-transform:none !important;font-size:1.05rem !important;letter-spacing:1.25px !important;border-radius:10px !important}.milo-btn-disabled{background-color:#9E9E9E !important;color:#fff !important;height:40px !important;font-size:13.6px !important;letter-spacing:1.25px !important;font-weight:500 !important;vertical-align:bottom !important;text-transform:none !important;border:1.5px solid #9E9E9E !important;border-radius:5px !important}.milo-btn-disagree{background-color:#ffffff !important;color:#616161 !important;width:161px !important;height:40px !important;text-transform:none !important;font-size:14px !important;letter-spacing:1.25px !important;border-radius:4px !important}.milo-btn-black{background:#212121 0% 0% no-repeat padding-box !important;border-radius:50px !important;height:30px !important;color:#ffffff !important;text-transform:none !important}#textLoading{font-weight:bold;color:white;margin-top:5px;font-size:20px}.bubble1{width:15px;height:15px;padding:10px;background-color:white;border-radius:50%;display:inline-block;-webkit-animation:bubbles-one 1.2s infinite ease-in-out;animation:bubbles-one 1.2s infinite ease-in-out;-webkit-animation-delay:-0.3s;animation-delay:-0.3s}.bubble2{width:15px;height:15px;padding:10px;background-color:white;border-radius:50%;display:inline-block;-webkit-animation:bubbles-two 1.2s infinite ease-in-out;animation:bubbles-two 1.2s infinite ease-in-out;-webkit-animation-delay:-0.3s;animation-delay:-0.3s}.bubble3{width:15px;height:15px;padding:10px;background-color:white;border-radius:50%;display:inline-block;-webkit-animation:bubbles-three 1.2s infinite ease-in-out;animation:bubbles-three 1.2s infinite ease-in-out;-webkit-animation-delay:-0.3s;animation-delay:-0.3s}@keyframes bubbles-one{0%{transform:scale(1)}50%{transform:scale(0.2)}100%{transform:scale(0.6)}}@-webkit-keyframes bubbles-one{0%{-webkit-transform:scale(1)}50%{-webkit-transform:scale(0.2)}100%{-webkit-transform:scale(0.6)}}@keyframes bubbles-two{0%{transform:scale(0.6)}50%{transform:scale(1)}100%{transform:scale(0.2)}}@-webkit-keyframes bubbles-two{0%{-webkit-transform:scale(0.6)}50%{-webkit-transform:scale(1)}100%{-webkit-transform:scale(0.2)}}@keyframes bubbles-three{0%{transform:scale(0.2)}50%{transform:scale(0.6)}100%{transform:scale(1)}}@-webkit-keyframes bubbles-three{0%{-webkit-transform:scale(0.2)}50%{-webkit-transform:scale(0.6)}100%{-webkit-transform:scale(1)}}.MuiInput-underline::before{border-bottom:0px !important}.MuiInput-underline::after{border-bottom:0px !important}.MuiTableCell-head{font-weight:500 !important;color:#757575 !important;padding-left:24px !important}.MuiTableCell-body{font-weight:normal !important}.MuiTableCell-root{display:table-cell;height:39px !important;padding:4px 24px !important;font-size:13px !important;font-style:normal;text-align:left;font-family:'Roboto', 'Helvetica', 'Arial', sans-serif;line-height:1.14;font-stretch:normal;border-bottom:1px solid #e0e0e0;letter-spacing:0.5px;vertical-align:inherit}.MuiListItem-root{color:#212121 !important;overflow:hidden !important;font-size:15px !important;height:24px !important;box-sizing:border-box !important;font-style:normal !important;min-height:48px !important;font-family:'Roboto', 'Helvetica', 'Arial', sans-serif !important;font-weight:normal !important;line-height:1.2 !important;padding-top:6px !important;white-space:nowrap !important;font-stretch:normal !important;letter-spacing:0.5px !important;padding-bottom:6px !important}.MuiFormControlLabel-label{color:#212121 !important}.MuiCard-root{overflow:visible !important}.MuiFormLabel-root{color:rgba(0,0,0,0.54) !important;padding:0;font-size:16px !important;font-style:normal;font-family:'Roboto', 'Helvetica', 'Arial', sans-serif;font-weight:normal;line-height:1;font-stretch:normal;letter-spacing:0.5px}.MuiFormLabel-root.Mui-error{color:#f44336 !important}.MuiFormLabel-root.Mui-focused{color:#414ec1 !important}.MuiTypography-colorInherit{color:inherit !important}.MuiTableCell-head{font-size:12px !important}

