


.tabs-wrapper {
  max-width: 93.2%;
  margin: 0 auto;
  overflow: hidden;
}


.tabs:last-child, .tabs--selected:last-child {
  margin-right: 0;
}

.tabs--selected {
  background: #FFCB03;
}

.tabs{
  color: #ffffff;
}

.tabs a, .tabs--selected a {
  font-family: 'Archivo', Arial, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  cursor: pointer; 
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.tabs--selected a {
  color: #6B3529;
  font-weight: 700;
}

.tabs--selected:hover {
  background: #FFD633;
}

.nav-text{
  font: 21px Archivo;
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
  hyphens: auto;
}

.tabs--selected .nav-text{
  font: 21px Archivo;
  font-weight: bold;
  color: #6B3529;
}


@media (max-width: 480px) {
  .tabs-wrapper {
    max-width: 100%;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  #tabsGeneral ul {
    min-width: max-content;
  }
  
  .tabs, .tabs--selected {
    height: 60px;
    min-width: 100px;
    flex-shrink: 0;
    padding: 4px 2px;
  }
  
  .nav-text {
    font-size: 10px !important;
    line-height: 1.1;
  }
  
  .tabs--selected .nav-text {
    font-size: 10px !important;
  }
  
  .tabsGeneralNavigate::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 15px;
    pointer-events: none;
    z-index: 1;
  }
}
@media (min-width: 481px) and (max-width: 792px) {
  .tabs-wrapper {
    max-width: 100%;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  #tabsGeneral ul {
    min-width: max-content;
  }
  
  .tabs, .tabs--selected {
    height: 60px;
    min-width: 100px;
    flex-shrink: 0;
    padding: 4px 2px;
    margin-right: 1px;
  }
  
  .nav-text {
    font-size: 10px !important;
    line-height: 1.1;
  }
  
  .tabs--selected .nav-text {
    font-size: 10px !important;
  }
  
  .tabsGeneralNavigate::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 15px;
    pointer-events: none;
    z-index: 1;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {
  .tabs-wrapper {
    max-width: calc(100% - 50px);
  }
  
  .tabs, .tabs--selected {
    height: 70px;
    padding: 8px 6px;
  }
  
  .nav-text {
    font-size: 16px !important;
    line-height: 1.2;
  }
  
  .tabs--selected .nav-text {
    font-size: 16px !important;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .tabs, .tabs--selected {
    height: 75px;
    padding: 10px 8px;
  }
  
  .nav-text {
    font-size: 18px !important;
    line-height: 1.2;
  }
  
  .tabs--selected .nav-text {
    font-size: 18px !important;
  }
}

@media (min-width: 1200px) {
  .tabs, .tabs--selected {
    height: 80px;
    padding: 12px 10px;
  }
  
  .nav-text {
    font-size: 21px !important; 
    line-height: 1.2;
  }
  
  .tabs--selected .nav-text {
    font-size: 21px !important;
  }
}

:root{
  --icon-xxs: 12px;
  --icon-xs: 16px;
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
  --icon-xxl: 128px;
}

.icon{
  display: inline-block;
  color: inherit;
  fill: currentColor;
  height: 1em;
  width: 1em;
  line-height: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.icon--xxs{font-size: 12px; font-size: var(--icon-xxs)}
.icon--xs{font-size: 16px; font-size: var(--icon-xs)}
.icon--sm{font-size: 24px; font-size: var(--icon-sm)}
.icon--md{font-size: 32px; font-size: var(--icon-md)}
.icon--lg{font-size: 48px; font-size: var(--icon-lg)}
.icon--xl{font-size: 64px; font-size: var(--icon-xl)}
.icon--xxl{font-size: 128px; font-size: var(--icon-xxl)}

.sidebar {
  background: #F5F2F0;
  min-height: 320px;
  padding: 30px 0px;
  border-right: 1px solid #E5E1DD;
  position: relative;
  padding-left:3.3%;
  max-width: 60%;
  font-weight: 'Archivo';
}

.profile-container {
  display: flex;
  background: #FFFFFF; 
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  margin-bottom: 2px;
}

.cd-tabs__item {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  text-decoration: none;
  color: #6B3529;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  border: none;
  font: normal normal  17px Archivo;
/*  font: normal normal 300 15px/27px Archivo;*/
  width: 100%;
}

.cd-tabs__item:hover {
  background: rgba(107, 53, 41, 0.08);
  color: #6B3529;
  text-decoration: none;
}

.cd-tabs__item--selected {
  background: #C2B1A3;
  color: #ffffff;
  font: normal normal  600 17px Archivo;

}

.cd-tabs__item .icon {
  margin-right: 12px;
  color: #8B6B47;
  flex-shrink: 0;
}

.cd-tabs__item--selected .icon {
  color: #6B3529;
}

.cd-tabs__item span {
  white-space: nowrap;
}

@media (max-width: 792px) {
  .profile-container {
    flex-direction: column;
  }
  

  .sidebar{
    min-height: 0px;
    padding-left: 0px;
  }
}


.demo-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.breakpoint-info {
  background: #e8f5e8;
  border: 1px solid #4caf50;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
  color: #2e7d32;
}
@media (max-width: 375px) {
  .profile-container .sidebar {
    display: flex;
    width: 100% !important;
    justify-content: center;
    padding: 0 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .table {
    table-layout: auto;
    width: 100%;  
    font-size: 12px;
  }
  
  .table thead tr th{
    color: #6B3529 !important;
  }
  
  .td-for-card{
    color: #6B3529 !important;
  }
  
  .sidebar ul {
    display: flex;
    gap: 2px;
    min-width: max-content; 
    margin: 0;
    padding: 0;
  }
  
  .sidebar ul li{
    display: flex;
    flex-shrink: 0; 
    width: 65px; 
  }

  .sidebar{
    background: #F5F2F0;
    border-right: none;
    border-bottom: 1px solid #E5E1DD;
    position: relative;
    max-width: 100%;
    padding: 8px 0px;
    min-height: auto;
  }
  
  .sidebar li{
    margin-bottom: 0px;
    margin-right: 0px;
  }
  
  .cd-tabs__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font: normal normal 7px/1 Archivo;
    padding: 6px 2px;
    border: 1px solid #E5E1DD;
    border-radius: 3px;
    min-height: 55px; 
    width: 100%;
    transition: all 0.2s ease;
  }
  
  .cd-tabs__item--selected{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    font: normal normal bold 7px/1 Archivo;
    padding: 6px 2px;
    border: 1px solid #C2B1A3;
    border-radius: 3px;
    min-height: 55px;
    width: 100%;
  }
  
  .cd-tabs__item .icon {
    margin-right: 0px;
    margin-bottom: 3px;
    color: #8B6B47;
    flex-shrink: 0;
    font-size: 14px;
  }
  
  .cd-tabs__item--selected .icon {
    color: #6B3529;
    margin-bottom: 3px;
    font-size: 14px;
  }
  
  .cd-tabs__item span {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55px;
    line-height: 0.9;
    word-break: break-word;
    hyphens: auto;
  }
  
  .card-header-custom b{
    font-size: 15px;
  }
}

@media (min-width: 376px) and (max-width: 434px) {
  .profile-container .sidebar {
    display: flex;
    width: 100% !important;
    justify-content: center; 
    padding: 3px 10px; 
  }
  
  .table {
    table-layout: auto;
    width: 100%;  
    font-size: 14px;
  }
  
  .table thead tr th{
    color: #6B3529 !important;
  }
  
  .td-for-card{
    color: #6B3529 !important;
  }
  
  .sidebar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px; 
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .sidebar ul li{
    display: flex;
    flex: 1; 
    max-width: 75px; 
    min-width: 65px; 
  }

  .sidebar{
    background: #F5F2F0;
    border-right: none;
    border-bottom: 1px solid #E5E1DD; 
    position: relative;
    max-width: 100%;
    padding: 12px 5px; 
    min-height: auto;
  }
  
  .sidebar li{
    margin-bottom: 0px;
    margin-right: 0px;
  }
  
  .cd-tabs__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font: normal normal 8px/1.1 Archivo;
    padding: 7px 4px; 
    border: 1px solid #E5E1DD;
    border-radius: 4px;
    min-height: 65px; 
    width: 100%;
    transition: all 0.2s ease;
  }
  
  .cd-tabs__item--selected{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    font: normal normal bold 8px/1.1 Archivo;
    padding: 10px 4px;
    border: 1px solid #C2B1A3;
    border-radius: 4px;
    min-height: 65px;
    width: 100%;
  }
  
  .cd-tabs__item .icon {
    margin-right: 0px;
    margin-bottom: 5px; 
    color: #8B6B47;
    flex-shrink: 0;
    font-size: 16px; 
  }
  
  .cd-tabs__item--selected .icon {
    color: #6B3529;
    margin-bottom: 5px;
    font-size: 16px;
  }
  
  .cd-tabs__item span {
    white-space: normal; 
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60px;
    line-height: 1.1;
    hyphens: auto;
  }
  
  .card-header-custom b{
    font-size: 15px;
  }
}

@media (min-width: 435px) and (max-width: 792px) {
  .profile-container .sidebar {
    display: flex;
    width: 100% !important;
    justify-content: center;
    padding: 0 15px;
  }
  
  .table {
    table-layout: auto;
    width: 100%;  
    font-size: 12px;
  }
  
  .table thead tr th{
    color: #6B3529 !important;
  }
  
  .td-for-card{
    color: #6B3529 !important;
  }
  
  .sidebar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 100%;
    margin: 1px;
    padding: 0;
  }
  
  .sidebar ul li{
    display: flex;
    flex: 1;
    max-width: 85px;
    min-width: 70px;
  }

  .sidebar{
    background: #F5F2F0;
    border-right: none;
    border-bottom: 1px solid #E5E1DD;
    position: relative;
    max-width: 100%;
    padding: 15px 5px;
    min-height: auto;
  }
  
  .sidebar li{
    margin-bottom: 0px;
    margin-right: 0px;
  }
  
  .cd-tabs__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font: normal normal 9px/1.1 Archivo;
    padding: 12px 6px;
    border: 1px solid #E5E1DD;
    border-radius: 4px;
    min-height: 70px;
    width: 100%;
    transition: all 0.2s ease;
  }
  
  .cd-tabs__item--selected{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    font: normal normal bold 9px/1.1 Archivo;
    padding: 12px 6px;
    border: 1px solid #C2B1A3;
    border-radius: 4px;
    min-height: 70px;
    width: 100%;
  }
  
  .cd-tabs__item .icon {
    margin-right: 0px;
    margin-bottom: 6px;
    color: #8B6B47;
    flex-shrink: 0;
    font-size: 18px;
  }
  
  .cd-tabs__item--selected .icon {
    color: #6B3529;
    margin-bottom: 6px;
    font-size: 18px;
  }
  
  .cd-tabs__item span {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
    line-height: 1.1;
    hyphens: auto;
  }
  
  .card-header-custom b{
    font-size: 15px;
  }
}

@media (min-width: 905) and (max-width: 1537px) {

  .tabs{
    width: 23% !important;
  }

}

@media (min-width: 992){
  .tabsGeneralNavigate .tabs-wrapper  ul li .tab2{
    width: 10% !important;
  }
}
@media (max-width: 768px) {
  #login-section {
    display: none !important;
  }
}