﻿.lab-item.selected {
  color: white;
  background-color: rgb(11, 94, 154);
  border-color: rgb(11, 94, 154);
  background-image: linear-gradient(rgba(11, 94, 154, 0.85), rgba(11, 94, 154, 0.85)), url(/Content/Areas/Hospitals/images/logo.png);
}
.lab-item.selected a{
  color:#fff;
}
.lab-container {
  margin: auto;
  display: flex;
  margin-top: 50px;
  gap: 10px;
  margin-bottom: 50px;
  max-width: 100%;
  justify-content: space-between;
}

.lab-item {
  background-color: #e3f2fd;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 15px;
  color: #0d47a1;
  font-weight: bold;
  /* flex: 1; */
  text-align: center;
  background-image: url(/Content/Areas/Hospitals/images/logo.png);
  background-repeat: no-repeat;
  background-size: 95% auto;
  background-position: 20% center;
  border: 1px solid #bbdefb;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.lab-tablist {
  position: relative;
  min-height: 100vh;
  display: flex;
  gap: 50px;
}

.lab-tablist-left {
  width: 20%;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
  text-align: center;
  height: 100%;
}

.lab-tablist-right {
  width: 100%;
  position: relative;
}

.lab-tablist-right .tablist-tab {display: none;line-height: 30px;font-size: 18px;}
.lab-tablist-right .tablist-tab p{margin-bottom:15px;}
.lab-tablist-right .tablist-tab.active {
  display: block;
}

.lab-tablist .lab-tab {
  width: 100%;
  display: none;
  transition: all 0.2s ease;
}

.tablist-title {
  padding: 21px 15px;
  color: #0b5e9a;
}

.tablist-title.active {
  background: #0b5e9a;
  color: #fff;
}
@media only screen and (max-width:768px) {
  .lab-tablist-right .tablist-tab{
    font-size: 16px;
  }
  .lab-container{
    overflow-x: auto;
  }
  .lab-item {
    white-space: normal;
    text-overflow:inherit;
  }
}