
.gallerytab {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  /*align-items: stretch;*/
  /*background: #AD9897;*/
  color: #6C5D5D;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2);
    width: 100%;
  font-family: "Jost", sans-serif;
  margin-top: 10px;
}

.gallerytab a {
  position: relative;
  padding: 20px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  border-bottom: 1px solid #977474;
}

.gallerytab a:hover,
.gallerytab a.selected {
  background: #ecebd6;
  color: #b48a2e;
/*   text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); */
}
/* tabs triangle */
.triangle-container {
    position: absolute !important;
    z-index: 10;
    top: 0;
    left: 99.6%;
    width: 30px !important;
    background: transparent !important;
    height: 100%;
}

.triangle-container img {
    position: absolute;
    height: 100%;
    left: 0;
    width: 30px;
}



.tabs .content {
  position: relative;
  color: #6C5D5D;
  transition: opacity 0.1s linear 0s;
  display: none;
}

.tabs .content.visible {
  display: block;
}

.tabs .content p { padding-bottom: 2px;}

.tabs .content p:last-of-type { padding-bottom: 0px; }

@media (max-width: 1199px) {
.gallerytab {
	flex-wrap: inherit;
	margin-top: 0px;
}
.gallerytab a {
    padding: 15px;
	border: 1px solid #977474;
}
}