/**
 * h1 Styles
 */
/**
 * h2 Styles
 */
/**
 * h3 Styles
 */
/**
 * h4 Styles
 */
/**
 * h5 Styles
 */
/**
 * h6 Styles
 */
/**
 * Container for components .container class
*/
/*
* Content + Two Sidebars Layout
* Pages: Spikes, Brixx, Tax
*/
.form-group-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  border: 1px solid #bebebe;
  border-radius: 30px;
  padding: 4px 7px;
  z-index: 0;
  position: relative;
}
.form-group-toggle .btn-label {
  display: inline-block;
  padding: 8px 14px;
  width: 50%;
  position: relative;
  text-align: center;
  transition: background 600ms ease, color 600ms ease;
}
.form-group-toggle input[type=radio].toggle {
  opacity: 0;
  height: 0px;
  width: 0px;
}
.form-group-toggle input[type=radio].toggle + label {
  cursor: pointer;
  min-width: 60px;
}
.form-group-toggle input[type=radio].toggle + label:hover {
  background: none;
  color: #1a1a1a;
}
.form-group-toggle input[type=radio].toggle + label:after {
  background: #1a1a1a;
  border-radius: 30px;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
  z-index: -1;
}
.form-group-toggle input[type=radio].toggle.toggle-left + label {
  border-right: 0;
}
.form-group-toggle input[type=radio].toggle.toggle-left + label:after {
  left: 100%;
}
.form-group-toggle input[type=radio].toggle.toggle-right + label {
  margin-left: -5px;
}
.form-group-toggle input[type=radio].toggle.toggle-right + label:after {
  left: -100%;
}
.form-group-toggle input[type=radio].toggle:checked + label {
  cursor: default;
  color: #fff;
  transition: color 200ms;
}
.form-group-toggle input[type=radio].toggle:checked + label:after {
  left: 0;
}

.dark .form-group-toggle:focus-within {
  outline: 1px solid #0066cc;
}
.dark .form-group-toggle input[type=radio].toggle + label:hover {
  color: #ffffff;
}
.dark .form-group-toggle input[type=radio].toggle + label:after {
  background: #ffffff;
}
.dark .form-group-toggle input[type=radio].toggle:checked + label {
  color: #1a1a1a;
}