.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  .page-content {
    display: flex;
    width: 100%;
    min-height: 100vh;
    vertical-align: bottom;

    .page-header {
      background: #fff;
      border-bottom: 1px solid var(--Bg1);
      height: 72px;
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 10;
      display: flex;
      justify-content: space-between;
      align-items: center;

      .navbar {
        padding: 12px 24px;

        .user {
          display: flex;
          align-items: center;
          position: relative;

          .auth-nav-menu {
            position: absolute;
            right: 0;
            top: 40px;
            z-index: 100;
            background: #fff;
            box-shadow: var(--secondary_shadow);
            border-radius: 8px;
            display: block !important;
            width: 250px;
            visibility: hidden;
            opacity: 0;
            overflow: hidden;
            transition: visibility 0.1s linear, opacity 0.1s linear;

            &__item {

              .nav-menu-text-link {
                padding: 9px 17px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--Main1);
                font-size: 19px;
                line-height: 120%;
                transition: 0.2s;
              }

              &:hover {
                background-color: var(--Bg2);
              }              
            }
          }

          &:hover {
            .auth-nav-menu {
              visibility: visible;
              opacity: 1;
              z-index: 30;
            }
          }

          .info {
            display: flex;
            flex-direction: column;
            margin-right: 20px;
            white-space: nowrap;

            span {
              text-align: right;
            }

            .name {
              font-size: 12px;
              line-height: 16px;
              color: #8F859F;
            }

            .select-profile {
              line-height: 19px;
            }

            @media (max-width:991px) {
              display: none;
            }
          }

          .btn-icon {
            width: 47px;
            height: 47px;

            &__img {
              max-width: 39px;
              max-height: 39px;
              stroke: rgba(58,58,58,.8);
            }
          }

          img {
            width: 38px;
            min-width: 38px;
            height: 38px;
            object-fit: cover;
            border-radius: 100%;
            border: 1px solid var(--Stroke);
          }
        }
      }

      .logo {
        display: flex;
        align-items: center;
        height: 72px;
        padding-left: 24px;

        .logo-img {
          height: 100%;
          display: flex;
          align-items: center;
          padding: 4px 0;
        }

        .desktop-logo {
          max-height: 64px;
        }

        img {
          display: block;
        }

        @media (max-width:991px) {
          box-shadow: none;
          padding-left: 0;
          width: auto;
        }
      }

      .burger {
        width: 24px;
        height: 24px;
        position: relative;
        overflow: hidden;
        margin-left: 24px;
        margin-right: 24px;

        input {
          display: none;
        }

        input:checked~label {
          transform: rotate(90deg);

          .bar-1 {
            top: 10px;
            transform: rotate(45deg);
          }

          .bar-2 {
            left: 100%;
          }

          .bar-3 {
            top: 10px;
            transform: rotate(-45deg);
          }
        }

        label {
          width: 24px;
          height: 24px;
          display: block;
          transition: all .35s;
          cursor: pointer;

          &:before {
            display: none !important;
          }
        }

        .bar {
          width: 100%;
          height: 2px;
          display: block;
          position: absolute;
          left: 0;
          background: #393442;
          border-radius: 10px;
          transition: all .35s;
          pointer-events: none;

          &-1 {
            top: 6px;
          }

          &-2 {
            top: 12px;
          }

          &-3 {
            top: 18px;
          }
        }
      }

      #sidebar-toggle-button {
        display: none;

        @media (max-width:991px) {
          display: block;
        }
      }
    }

    .page-inner {
      background: var(--Bg1);
      width: 100%;
      min-height: 100%;
      position: relative;
      padding: 30px 24px;

      @media (max-width: 991px) {
        padding: 24px 20px;
      }

      @media (max-width: 768px) {
        padding: 24px 10px;
      }

      &__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 1096px;
        // margin: 0 auto;
        margin-bottom: 8px;

        h1 {
          font-weight: bold;
          font-size: 24px;
          line-height: 32px;
          margin-bottom: 8px;
          margin-top: 0;
          padding: 0;
          line-height: 1;
        }

        .breadcrumbs {
          padding: 0;
        }
      }

      .toggle-component {
        background: #fff;
        box-shadow: 0px 2px 6px rgba(57, 52, 66, 0.05);
        border-radius: 4px;
        height: 48px;
        display: flex;
        align-items: center;
        color: #8F859F;
        font-size: 16px;

        &__item {
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          padding: 0 20px;
          height: 38px;

          svg {
            margin-right: 12px;
          }

          &:first-child {
            border-right: 1px solid var(--Stroke);
          }
        }

        &.tabs {
          color: inherit;

          .toggle-component__item {
            height: 100%;
            border: none;
            font-weight: 600;
            border: 1px solid transparent;
            transition: 0.5s;
            cursor: pointer;

            &.active {
              border: 1px solid var(--Main2);
              color: var(--Main2);
            }

            &:first-child {
              border-radius: 4px 0px 0px 4px;
            }

            &:last-child {
              border-radius: 0px 4px 4px 0px;
            }
          }
        }
      }
    }

    .content-container{
      max-width: 1096px;  

      @media (min-width: 1704px) {
        margin-left: auto;
        margin-right: auto;
      }
    }
  }
}

@media (min-width: 1440px) { 
  .page-container .card.info-baner {
    justify-content: flex-start;
  }
}

@media (min-width: 1704px) {
  .page-container .page-content {
    width: 100%;
  }

  .page-container .page-content .page-inner__header,
  .page-container .card {
    margin-left: auto;
    margin-right: auto;
  }

  .page-container .card.info-baner {
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
    margin-left: -24px;
  }
}