.tabs, .tabs-mob {
  display: flex;
  justify-content: center;
}

.tabs li:not(:last-child), .tabs-mob li:not(:last-child) {
  margin-right: 7px;
}

.tabs li a, .tabs-mob li a {
    display: block;
    position: relative;
    top: 4px;
    padding: 10px 25px;
    border-radius: 2px 2px 0 0;
    background: white;
    opacity: 0.7;
    transition: all 0.1s ease-in-out;
    color: #915D6D;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 21px;
}

.tabs li.active a,
.tabs li a:hover,
.tabs-mob li.active a,
.tabs-mob li a:hover{
  opacity: 1;
    color: #C0AE72;
}

.tabs-content {
  position: relative;
  z-index: 2;
  padding: 25px;
  border-radius: 0 4px 4px 4px;
  background: white;
}

.tabs-panel,  .tabs-panel-mob{
  display: none;
}

.tabs-panel.active, .tabs-panel-mob.active {
  display: block;
}

.tabs-panel p + div, .tabs-panel-mob p + div {
  margin-top: 15px;
}

@media screen and (max-width: 600px) {
  .tabs, .tabs-mob {
    flex-direction: column;
  }

  .tabs li, .tabs-mob li {
    width: 100%;
  }

  .tabs li:not(:last-child), .tabs-mob li:not(:last-child) {
    margin-right: 0;
  }

  .tabs li a, .tabs-mob li a {
    border-radius: 0;
    opacity: 1;
    top: 0;
	  padding-left: 0;
	  padding-right: 0;
	  
  }

  .tabs li.active a::before, .tabs-mob li.active a::before {
    content: "•";
    padding-right: 5px;
  }

  .tabs-content {
    border-radius: 0;
	  padding-left: 0;
	  padding-right: 0;
  }
	
	.tabs-content .wrapper{
		 padding-left: 0;
	  padding-right: 0;
	}
}