:root {
    --primary-color: #185ee0;
    --secondary-color: #e6eef9;
}
*, *:after, *:before {
    box-sizing: border-box;
}
body {
    /* background-color: rgba(230, 238, 249, 0.5); */
}
.tab-container {
    position: absolute;
    left: 0;
/* 	 top: 0; */
    right: 0;
/* 	 bottom: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-tabs {
    display: flex;
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
    padding: 0.75rem;
    border-radius: 99px;
}
.top-tabs * {
    z-index: 2;
}
input[type="radio"] {
    display: none;
}
input[type="radio"]:checked + label {
    color: var(--primary-color);
}
input[type="radio"]:checked + label > .notification {
    background-color: var(--primary-color);
    color: #fff;
}
.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px; /* originally 54px */
    width: 150px; /* originally 200px */
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 99px;
    cursor: pointer;
    transition: color 0.15s ease-in;
}
input[class="chkGroupSignedIn"]:checked ~ .glider {
    transform: translateX(0);
}
input[class="chkOtherSignedIn"]:checked ~ .glider {
    transform: translateX(100%);
}
input[class="chkEventSignedIn"]:checked ~ .glider {
    transform: translateX(200%);
}

/* input[id="chkGroupNotSignedIn"]:checked ~ .glider {
    transform: translateX(0);
} */
input[class="chkOtherNotSignedIn"]:checked ~ .glider {
    transform: translateX(0%);
}
input[class="chkEventNotSignedIn"]:checked ~ .glider {
    transform: translateX(100%);
}

.glider {
    position: absolute;
    display: flex;
    height: 45px;
    width: 150px;
    background-color: var(--secondary-color);
    z-index: 1;
    border-radius: 99px;
    transition: 0.25s ease-out;
}
@media (max-width: 700px) {
    .top-tabs {
        transform: scale(0.7);
   }
}
