:root {
  --primary-color: #3A5DAE;
  --secondary-color: #FFFFFF;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

p{
  bottom: 0;
  top: 0;
}

.v_container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F1F0F6;
}

label{
  margin-bottom: 0 !important;
}

.slide-tabs {
  display: flex;
  position: relative;
  color: var(--primary-color);
  background-color: #E2E6F1;
  box-shadow: 0 0 1px 0 rgb(233 234 236 / 15%),
    0 6px 12px 0 rgb(241 244 248 / 15%);
  padding: 0.75rem;
  border-radius: 99px;
}

.slide-tabs * {
  z-index: 2;
}

input[type="radio"] {
  display: none;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 200px;
  font-size: 1.35rem;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in;
}

.tab-label {
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in;
}

.tab-label a {
  display: block;
  margin: auto;
  color: #3a629d;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2rem;
  width: 130px;
  position: relative;
  padding: 10px;
  border-radius: 20px;
  border: 1px #3a629d solid;
}

.tab-label a:hover {
  color: #FFF;
  background: #5888d0;
  transition: .25s ease-out 5ms;
}

.tab-label a.current {
  color: #FFF;
  background: #3a629d;
}

.notification {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-left: 0.75rem;
  border-radius: 50%;
  background-color: var(--secondary-color);
  transition: 0.15s ease-in;
}

input[type="radio"]:checked + label {
  color: var(--primary-color);
}

input[type="radio"]:checked + label > .notification {
  background-color: var(--primary-color);
  color: #fff;
}

input[id="radio-1"]:checked ~ .glider {
  transform: translateX(0);
}

input[id="radio-2"]:checked ~ .glider {
  transform: translateX(100%);
}

input[id="radio-3"]:checked ~ .glider {
  transform: translateX(200%);
}

.glider {
  position: absolute;
  display: flex;
  height: 54px;
  width: 200px;
  background-color: var(--secondary-color);
  z-index: 1;
  border-radius: 99px;
  transition: 0.25s ease-out;
}

@media (max-width: 700px) {
  .tab {
    font-size: 1.55rem;
  }
  .tab-label a {
    font-size: 1rem;
    width: 100px;
  }
  .slide-tabs {
    transform: scale(0.6);
  }
}
