/* Wrap table for horizontal scroll */
.pricing-table-wrapper {
  overflow-x: auto;
}

.pricing-table {
  min-width: 700px; /* force horizontal scroll if screen smaller */
}

.pricing-table-wrapper .info {
  display:inline-block;
  width:20px;
  height:20px;
  line-height:20px;
  text-align:center;
  border-radius:50%;
  background:#eef7f6;
  color:#0d6b77;
  font-size:12px;
  border:1px solid #d9f0ee;
  cursor:help;
  margin-left:8px;
  user-select:none;
  vertical-align:middle;
  box-sizing:border-box;
}

/* Table cell that has info icon */
.pricing-table td {
  position: relative; /* allow absolute positioning of child */
}

/* Info icon aligned to right */
.info {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background: #eef7f6;
  color: #000;
  font-size: 12px;
  border: 1px solid #d9f0ee;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  position: absolute;
  right: 8px;   /* distance from right edge */
  top: 50%;
  transform: translateY(-50%);
}

/* Tooltip same as before */
.info .tooltip-text {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 8px 10px;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(17,17,17,0.12);
  color: #000000;
  font-size: 13px;
  font-weight:400;
  width: 350px;
  max-width: 350px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease;
}


@media (max-width: 580px) {
  .info .tooltip-text {
  width: 300px;
  max-width: 300px;
 }
}

.info .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  box-shadow: -1px -1px 1px rgba(0,0,0,0.05);
}

.info:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}



.pricing-table-wrapper h1 {
  text-align: center;
  margin: 0;
  font-size: 32px;
}
.pricing-table-wrapper .sub {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.pricing-table thead th {
  background: #fff;
  padding: 20px 10px;
  font-size: 16px;
  font-weight: bold;
  /*border-bottom: 2px solid #eee;*/
  /*border-top: 1px solid #eee;*/
  /*border-left: 1px solid #eee;*/
  border-right: 1px solid #eee;
}
.pricing-table thead th:first-child {
  background: #ffffff;
  text-align: left;
  font-weight: normal;
  font-size: 14px;
  color: #555;
  padding-right:250px;
}

@media (max-width: 580px) {
  .pricing-table thead th:first-child {
  padding-right:230px;
 }
}

.pricing-table .price {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.pricing-table .btn {
  display: inline-block;
  padding: 8px 18px;
  margin-top: 10px;
  background: #d9f2f5;
  border: 0.5px solid #01516e;
  color: #0a3d42;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}

.pricing-table .btn:hover {
  display: inline-block;
  padding: 8px 18px;
  margin-top: 10px;
  background: #01516e;
  border: 0.5px solid #01516e;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: .1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.pricing-table .btn1 {
  display: inline-block;
  padding: 11px 18px;
  margin-top: 10px;
  background: #16a2b9;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  min-width:175px;
}

.pricing-table .btn1:hover {
  display: inline-block;
  padding: 11px 18px;
  margin-top: 10px;
  background: #01516e;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: .1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.pricing-table tbody td {
  padding: 14px 10px;
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  font-size: 14px;
  color:#262727;
}
.pricing-table tbody td:first-child {
  background: #fafafa;
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  left: 0;
  z-index: 5;
}

.pricing-table tbody tr:nth-child(even) td {
  background: #fcfcfc;
}

.pricing-table .check {
  color: #28a745;
  font-weight: bold;
}
.pricing-table .dash {
  color: #262727;
}

.pricing-table .section-title td {
  background: #00506e !important;
  font-weight: bold;
  text-transform: none;
  color: #ffffff !important;
  border-top: 1px solid #e0e0e0;
}

.pricing-table .info {
  font-size: 12px;
  color: #777;
  cursor: help;
  margin-left: 6px;
  border: 1px solid #ccc;
  border-radius: 50%;
  /*padding: 1px 5px;*/
  background: #f9f9f9;
}
