/* ---- Verify page ----*/
.verf-head,
.verf-sec {
  background: var(--color-gray-secondary);
}
.verf-sec {
  padding-bottom: var(--hg);
}

.verf-sec .content-container {
  padding-top: 0;
  background: var(--color-dark-royal);
  border-radius: var(--tn);
}

.verf-tab-title {
  width: 50%;
  height: var(--xxl);
  background: var(--color-gray-secondary);
  position: relative;
  top: calc(var(--xxl)/-2);
  margin: auto;
  border-radius: var(--tn);
  border: 3px solid var(--color-dark-royal);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.verf-tab-title label {
  flex-basis: 50%;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verf-tab-title input {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: -1;
}

.verf-tab-title span {
  font-size: var(--t-md);
  font-weight: var(--w-bld);
  font-variation-settings: "wght" var(--w-bld), "dots" 4;
  color: var(--color-dark-royal);
  position: relative;
  z-index: 1;
  user-select: none;
}

.verf-tab-title i {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  transition: 0.4s ease;
  background-color: var(--color-dark-royal);
}

.verf-tab-title label:first-child i {
  left: 0;
  right: unset;
}

.verf-tab-title label input[type="radio"]:checked~span {
  color: var(--color-gray-secondary);
}

.verf-tab-title label input[type="radio"]:checked~i {
  width: 100%;
}

.verf-tab-content {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.verf-tab-content>ul {
  display: grid;
  gap: var(--tn);
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: auto;
  justify-content: space-between;
  align-items: baseline;
  transition: all 0.4s ease, height 0s ease;
  position: relative;
  overflow: hidden;
}

#device-tab {
  flex-basis: 0;
  width: 0;
  height: 0;
  left: -100vw;
}

#liquid-tab {
  flex-basis: 0;
  width: 0;
  height: 0;
  right: -100vw;
}

.verf-tab-content #liquid-tab.active {
  flex-basis: 100%;
  width: 100%;
  right: 0;
  height: 100%;
}

.verf-tab-content #device-tab.active {
  flex-basis: 100%;
  width: 100%;
  height: 100%;
  left: 0;
}

.verf-tab-content li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--tn);
  background: var(--color-gray-secondary-50);
  width: 100%;
  border-radius: var(--tn);
  color: var(--color-dark-royal);
  font-size: var(--t-sm);
  gap: var(--tn);
  position: relative;
  overflow: hidden;
}

.verf-tab-content li a::before {
  color: var(--color-primary);
  font-size: var(--t-hg);
  position: relative;
  z-index: 1;
}

.verf-tab-content strong,
.verf-tab-content b {
  line-height: var(--t-md);
  position: relative;
  z-index: 1;
}

.verf-tab-content strong {
  color: var(--color-dark-primary-50);
}

.verf-tab-content a::after {
  content: "";
  position: absolute;
  offset: 0;
  top: 25%;
  transform: translateY(-25%);
  margin: auto;
  width: 0;
  height: 100%;
  background: var(--color-primary);
  border-radius: 10em;
  z-index: 0;
  transition: 0.4s ease;
}

.verf-tab-content li:hover a::before,
.verf-tab-content a:focus::before {
  color: var(--color-dark-royal)
}

.verf-tab-content li:hover a::after,
.verf-tab-content a:focus::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

@media (max-width: 767px) {
  .verf-sec .content-container {
    max-width: 640px;
  }

  .verf-tab-title {
    width: 100%;
  }

  .verf-tab-content>ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
