#comparison-table {
  background: #F5F5F5;
}

#web-table-container {
  text-align: center;
  padding: 20px;
}

#mobile-table-container {
  text-align: center;
  background: #FFF;
  padding: 20px 15px;
}

#tab-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #FFF;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}

.table-tab {
  padding: 15px;
  cursor: pointer;
  background: #F5F5F5;
  flex: 1;
}

.table-tab:hover {
  background: #DEDEDD;
}

.active-tab {
  background: #DEDEDD;
}

.table-blue {
  color: #0071BC;
}

.tab-divider {
  height: 25px;
  margin: 15px 0;
  width: 1px;
  border-left: 1.5px solid #000;
  z-index: 10;
}

.tab-text {
  margin: 0;
  align-self: center;
  font-size: 16px;
  color: #000;
}

#arrows {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
}

#left-arrow {
  font-size: 24px;
  width: 30px;
}

#right-arrow {
  font-size: 24px;
  width: 30px;
}

table {
  width: 100%;
}

#table-title {
  font-family: "LG Smart SemiBold", sans-serif !important;
  font-size: 24px;
  color: #000;
  font-weight: 600;
}

.table-image {
  width: 150px;
  height: auto;
  margin: 0 auto;
}

.th-color {
  background: #E2E0DF;
  font-size: 16px !important;
}

.th-color-blue {
  background: #E2E0DF;
  font-size: 16px !important;
  color: #0071BC !important;
}

.mobile-td {
  width: 60%;
}

.b-grey {
  background: #DEDEDD;
  font-family: "LG Smart Regular", sans-serif !important;
  font-size: 10.5px;
}

.web-th, .web-td {
  border: 1px solid grey;
  border-collapse: collapse;
  vertical-align: center;
  padding: 10px;
  font-size: 12px;
  text-align: center;
}

.web-th-first {
  border: 1px solid grey;
  border-collapse: collapse;
  vertical-align: top;
  color: grey;
  padding: 10px;
  font-size: 12px;
  border-top: 0;
  border-left: 0;
  background: #F5F5F5;
}

.circle {
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  align-self: center;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.positive {
  background: #94172B;
}

.negative {
  background: #606060;
}

@media (min-width: 544px){
  #mobile-table-container{
    display: none;
  }
}

@media (max-width: 543px){

  #web-table-container{
    display: none;
  }
}