
.container-switch-mode button {
    border: 0;
    border-radius: 18px;
}


@media only screen and (max-width: 569px) {
    .container-switch-mode {
        padding: 0 10px;
        right: 65px;
    }
}

.container-switch-mode:before,
.container-switch-mode:after {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    height: 20px;
    width: 1px;
    background-color: #cbcbcb;
}

@media only screen and (max-width: 1100px) {
    .container-switch-mode:before,
    .container-switch-mode:after {
        top: 21px;
    }
}

.container-switch-mode:before .mobile-device,
.container-switch-mode:after .mobile-device {
    top: 21px;
}

@media only screen and (max-width: 769px) {
    .container-switch-mode:before,
    .container-switch-mode:after {
        top: 15px;
    }
}

@media only screen and (max-width: 569px) {
    .container-switch-mode:before,
    .container-switch-mode:after {
        content: none;
    }
}

.container-switch-mode:after {
    left: auto;
    right: 0;
}

.container-switch-mode .public,
.container-switch-mode .expert {
    padding: 5px 20px;
    cursor: pointer;
    display: block;
    font-size: 1.1rem;
    color: #FFFFFF;
    background-color: #1cc1c5;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 2rem;
    transition: all 0.3s cubic-bezier(1, 0, 0, 1);
}

@media only screen and (max-width: 1100px) {
    .container-switch-mode .public,
    .container-switch-mode .expert {
        margin: 16px 0 20px;
    }
}

.container-switch-mode .public .mobile-device,
.container-switch-mode .expert .mobile-device {
    margin: 16px 0 20px;
}

@media only screen and (max-width: 769px) {
    .container-switch-mode .public,
    .container-switch-mode .expert {
        margin: 10px 0 20px;
    }
}

.container-switch-mode .expert {
    background-color: #966eaa;
}

.container-switch-mode .public.active,
.container-switch-mode .expert.active {
    display: none;
}

.container-switch-mode .switcher {
    position: relative;
    width: 35px;
    height: 10px;
    display: inline-block;
    line-height: 2rem;
}

.container-switch-mode .switcher:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 10px;
    border-radius: 5px;
    background-color: #FFFFFF;
    box-shadow: inset 0 0 11px 0 rgba(0, 0, 0, 0.4);
}

.container-switch-mode .switcher:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    width: 18px;
    height: 18px;
    background-color: #1cc1c5;
    border-radius: 50%;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
}

.container-switch-mode .switcher.expert-mode:after {
    left: auto;
    right: 0;
    background-color: #966eaa;
}
