.srss-container {
  right: 40px;
  background-color: rgba(145, 157, 169, 0.16);
  border-radius: 12px;
  margin: 0;
  position: absolute;
  padding: 4px;
  width: 428px;
  overflow: hidden;
  /*
	box-shadow: inset 0px 1px 2px rgba(16,36,76,0.16), 0px 1px 0px rgba(255,255,255,0.06);
 */
  z-index: 1;
  pointer-events: none;
  box-sizing: border-box;
  /* transition: 0.3s; */
}

.srss-wrapper {
  width: 33.33%;
  height: 28px;
  pointer-events: none;
}

.srss-scroller {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: calc(100% - 8px);
  height: 28px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
  pointer-events: none;
  z-index: -1;
}

.srss-segment {
  width: 33.33%;
  height: 28px;
  border-radius: 8px;
  float: left;
  opacity: 0;
  pointer-events: none;
  border: none;
  background: white;
  /* background: linear-gradient(to bottom,  #0080cc 40%,#0072b6 100%); */
  box-shadow: 0px 1px 2px rgba(16, 36, 76, 0.2);
  color: white;
  transform-origin: center center;
  transition: transform 0.2s;
}

.srss-segment:active {
  transform: scale(0.95);
}

.srss-scroller .srss-segment:last-child {
  background-color: white;
  height: 28px;
  opacity: 1;
  pointer-events: all;
}

.srss-button {
  display: block;
  width: 33.33%;
  height: 100%;
  margin: 0;
  float: left;
  background-color: transparent;
  border: none;
  color: white;
  pointer-events: all;
  outline: 0;
}

.srss-buttonContainer {
  width: 100%;
  background-color: transparent;
  margin-top: -28px;
  margin-left: -4px;
  height: 28px;
  position: absolute;
  z-index: -2;
}

.srss-buttonContainer button {
}

.ButtonScale {
  animation-name: buttonScaleAnimation;
  animation-duration: 0.2s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes buttonScaleAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.srss-labelContainer {
  width: 100%;
  background-color: transparent;
  opacity: 1;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.srss-labelContainer .srss-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33%;
  height: 100%;
  float: left;
  background-color: transparent;
  border: none;
  color: #383c40;
  pointer-events: none;
  text-align: center;
  line-height: normal;
  font-size: 16px;
  font-weight: 500;
  user-select: none;
  -webkit-font-smoothing: antialiased;
}

.srss-label.Hover {
  color: #0066b2 !important;
  /* text-shadow: 0px 1px 4px rgba(0,0,0,0.1); */
}

@media only screen and (max-width: 768px) {
  #header {
    height: 104px;
  }
  .srss-container {
    width: calc(100% - 80px);
    right: 40px;
    top: 88px;
  }
}

@media only screen and (max-width: 560px) {
  .srss-container {
    width: calc(100% - 48px) !important;
    right: 24px !important;
  }
}
