.nav-tabs {border:0;}
.nav-tabs .nav-item .nav-link {font-size:0.9rem;text-align:center;border:0;background-color:#3fc35f;color:#fff;border-radius:0;border-right:1px solid #093;}
.nav-tabs .nav-item .nav-link.active, .nav-tabs .nav-item .nav-link:hover {background-color:#093;}

.tab-pane {padding:1rem;border:1px solid #999;border-top:2px solid #3fc35f;}

ul.list {
  list-style: none; /* Remove default bullets */
}

ul.list li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #3fc35f; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */ 
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

@media only screen and (min-device-width: 320px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3),
only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1),
only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
	.nav-tabs .nav-item {width:100%;}
}