/* cuny_sticky_links style */
ul.anchors {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    display: flex;
}
.anchors li {
    padding-bottom:0;
    width: 100%;
    margin: 0 5px;
    flex: 1;
    border-radius: 4px;
    background: rgba(0, 0, 0, .1);
}
.anchors a {
    display: block;
    text-align: center;
    padding: 14px 0;
    font-size: 17px;
}
.anchors li:hover,
.anchors li:focus,
.anchors li.active {
    background-color: #ccc;
    color: #000;
}
.logo, .menu-btn, .menu-icon {
    display: none;
}

@media screen and (max-width:787px){ 
.logo{
    display:inline-block;
    padding: 2.5%;
    line-height: 2;
}
.anchors {
    display:block !important;
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}
.anchors li {
    display: block;
    margin: 0;
}
.anchors a {
    width:100%;
}
.menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 5%;
    position: relative;
    user-select: none;
}
.menu-icon .navicon {
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
    background: #000;
}
.menu-icon .navicon:before, 
.menu-icon .navicon:after {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.menu-icon .navicon:before {
    top: 5px;
}
.menu-icon .navicon:after {
    top: -5px;
}
.menu-icon .navicon::before, .menu-icon .navicon::after {
  background: #000;
}
.bg-primary-1 .menu-icon .navicon,
.bg-primary-1 .menu-icon .navicon:before, 
.bg-primary-1 .menu-icon .navicon:after,
.bg-primary-3 .menu-icon .navicon,
.bg-primary-3 .menu-icon .navicon:before, 
.bg-primary-3 .menu-icon .navicon:after {
    background: #F0F1F1;
}
.bg-primary-2 .menu-icon .navicon,
.bg-primary-2 .menu-icon .navicon:before, 
.bg-primary-2 .menu-icon .navicon:after {
    background: #1D3A83;
}
.bg-primary-4 .menu-icon .navicon,
.bg-primary-4 .menu-icon .navicon:before, 
.bg-primary-4 .menu-icon .navicon:after {
    background: #000;
}
.menu-btn {
    display: none;
}
.menu-btn:checked ~ .anchors {
    max-height: 240px;
}
.menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}
.menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}
.menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}
.menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
}
