.services-nav-container {
    width: 230px;
    overflow-y: auto;
    margin-left: 15px;
    
  }
  
  .name-display {
    font-size: 26px;
    padding: 25px 24px 16px;
  }
  
  .netflix-sidebar {
    overflow-y: auto;
    border: 1px solid #dfe1e1;
  }
  
  .netflix-sidebar li {
    width: 100%;
  }
  
  .menu-first-level {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-first-level .service-name {
    width: 100%;
    padding-right: 20px;
  }
  
  .service-type.no-selected-user .menu-first-level:after {
    display: none;
  }
  
  .hasSubMenu .menu-first-level:after {
    content: "";
    display: block;
    width: 13px;
    height: 8px;
    background: url(/o/com.yes.alpha.theme/images/yes/selfservice/arrow-open.png) no-repeat;
    transform: rotate(90deg);
    background-size: 100%;
  }
  
.btn-update-package{
  margin: 25px auto;
}

  .service-type {
    padding: 13px 14px;
  
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
  }
  
  .selected.service-type .service-name {
    font-weight: 600;
    color: #6bd7fd;
  }
  
  .service-type .sub-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }
  
  .service-type .sub-menu-item {
    padding: 0 14px 14px 0;
    cursor: pointer;
  }
  
  
  .service-type .sub-link {
    display: block;
  }
  
  .hasSubMenu.selected .menu-first-level:after {
    transform: rotate(0);
  }
  
  .selected .service-type-link + .sub-menu {
    max-height: 1000px;
    opacity: 1;
    margin: 16px 3px 0 0;
    border-right: 4px solid #6bd7fd;
  
    transition: max-height, opacity 0.25s ease-in;
  }
  
  .side-bar-breadcrumbs {
    display: none;
  }
  .service-type .sub-menu-item .selected,
  .service-type .sub-menu-item .sub-link:hover {
    text-decoration: underline;
    font-weight: 600;
  }
  
  .service-type .sub-menu-item:last-of-type {
    padding-bottom: 0;
  }
  
  @media (max-width: 768px) {
    .netflix-choose-package-container {
      display: block;
    }
    .services-nav-container {
      width: 100%;
      position: relative;
      box-shadow: 0 0 10px 0 #ccc;
      margin:0 0 32px 0;

    }
  
    .services-nav-container.open {
      overflow: visible;
    }
  
    .netflix-sidebar {
      max-height: 0;
      /* overflow: hidden; */
      transition: max-height 0.35s;
    }
  
    .open .netflix-sidebar {
      max-height: 1000px;
      position: absolute;
      z-index: 100;
      backface-visibility: hidden;
    }
  
    .side-bar-breadcrumbs {
      display: block;
      font-size: 3.438vw;
    }
  
    .name-display {
      position: relative;
      font-size: 6.406vw;
      margin-bottom: 0;
      padding: 6.875vw 7.5vw 2.188vw 0;
    }
  
    .name-display:after {
      position: absolute;
      top: 50%;
      left: 39px;
      display: block;
      content: "";
      background: url(/o/com.yes.alpha.theme/images/yes/selfservice/arrow-open-m.png) no-repeat;
      background-size: contain;
      transform: rotate(90deg);
      width: 4.844vw;
      height: 2.813vw;
      transition: transform 0.25s;
    }
  
    .open .name-display:after {
      transform: rotate(0);
    }

    .btn-update-package{
      margin: 45px auto;
    }

    .btn-update-package .btnAdd{
      right: auto;
      margin: auto;
    }


    .btn-arrow-left.btnAdd{
        min-width: 262px;
        height: 77px;
        font-size: 26px;
    }
  }