/**
 * The following styles get applied both on the front of your site
 * and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */
.wp-block-d3-security-tabs-quotes {
  position: relative;
  z-index: 5;
}
.wp-block-d3-security-tabs-quotes .tabs-wrapper {
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
}
.wp-block-d3-security-tabs-quotes .tab-labels {
  display: flex;
  position: relative;
  background-color: rgba(102, 0, 255, 0.2);
  border: 2px solid var(--wp--preset--color--purple);
  padding: 0.25rem 0.7rem 0.3rem;
  border-radius: 99px;
}
.wp-block-d3-security-tabs-quotes .tab-labels * {
  z-index: 2;
}
.wp-block-d3-security-tabs-quotes .tab-labels .label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  height: 54px;
  width: 200px;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in;
  font-size: 27px;
}
.wp-block-d3-security-tabs-quotes .tab-labels .label.is-active:nth-child(1) ~ .slider {
  transform: translateX(-3%);
}
.wp-block-d3-security-tabs-quotes .tab-labels .label.is-active:nth-child(2) ~ .slider {
  transform: translateX(100%);
}
.wp-block-d3-security-tabs-quotes .tab-labels .label.is-active:nth-child(3) ~ .slider {
  transform: translateX(204%);
}
@media (max-width: 768px) {
  .wp-block-d3-security-tabs-quotes .tab-labels .label {
    height: 34px;
    width: 140px;
    font-size: 22px;
  }
}
.wp-block-d3-security-tabs-quotes .slider {
  position: absolute;
  display: flex;
  height: 54px;
  width: 200px;
  background: linear-gradient(90deg, #FF7845 0, #B037FF 50%, #6600FF 100%);
  z-index: 1;
  border-radius: 99px;
  transition: 0.25s ease-out;
}
@media (max-width: 768px) {
  .wp-block-d3-security-tabs-quotes .slider {
    height: 34px;
    width: 140px;
  }
}
.wp-block-d3-security-tabs-quotes .tab-labels.is-proxy {
  opacity: 0;
  position: relative;
  user-select: none;
  z-index: -1;
  height: 0;
}
.wp-block-d3-security-tabs-quotes .inner-blocks {
  align-items: start;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}