/* tab-switch styles */
.tab-switch {
    position: relative;
}

.tab-switch:after {
    content: "";
    position: absolute;
    width: 50%;
    top: 0;
    transition: left cubic-bezier(.88, -.35, .565, 1.35) .4s;
    border-radius: 27.5px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .1);
    background-color: var(--n360-main-color);
    height: 100%;
    z-index: 0;
}

.tab-switch.left:after {
    left: 0;
}

.tab-switch.right:after {
    left: 50%;
}

.override-after::after {
    border-radius: 10px !important;
  }

.tab-switch .tab {
    display: inline-block;
    width: 50%;
    padding: 12px 0;
    z-index: 1;
    position: relative;
    cursor: pointer;
    transition: color 200ms;
    font-weight: bold;
    line-height: normal;
    user-select: none;
}

.tab-switch .tab.active {
    color: #ffffff;
}


.wrapper {
    border-radius: 37px;
    background-color: #f4f4f4;
    padding: 8px;
    width: 100%;
    max-width: 316px;
    margin-left: auto;
    margin-right: auto;
}