.bullets-container {
    display: table;
    position: fixed;
    right: 5px;
    height: 100%;
    z-index: 999;
    font-weight: normal;
}

@media (max-width: 1024px) {
  .bullets-container {
    display: none;
  }
}

.section-bullets {
    transition-duration: .3s;
    list-style: none;
    margin: 0;
    display: table-cell;
    vertical-align: middle;
}

.section-bullets li {
    display: block;
    text-align: right;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    cursor: pointer;
    margin-bottom: 1px;
}

.section-bullets li a:before {
    content: ' ';
    width: 0;
    height: 100%;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 0;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    transition-duration: .1s;
}

.section-bullets li a:after {
    content: ' ';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #3b3a3a;
    position: absolute;
    right: 4px;
    transition-duration: .2s;
}

.section-bullets li a {
    color: #000;
    overflow: hidden;
    position: relative;
    display: inline-block;
    transition-duration: .3s;
    opacity: 0.7;
    margin-left: 5px;
    padding: 5px 20px 5px 15px;
    text-decoration: none;
    min-height: 11px;
}

.section-bullets li span {
    position: relative;
    right: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    display: inline-block;
}

.section-bullets li:hover a {
    padding: 5px 20px 5px 35px;
}
.section-bullets:hover li a {
    opacity: 1;
    background-color: rgba(255,255,255,0.4);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.section-bullets:hover li span {
    top: 1px;
    opacity: 1;
    transition-delay: 0.1s;
}

.section-bullets li:hover a:after {
    transform: scale(1.2);
    top: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: #3b3a3a;
}

.section-bullets li:hover span {
    transform: scale(1.2);
    right: 16px;
}

.section-bullets li.active a:after {
  background-color: #3b3a3a;
  transform: scale(1.1);
}
