.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.tncTab {
    background: #fff;
    color: #000;
    padding: 1%;
    box-shadow: 0 0 8px 1px #00000014;
    margin: 5px 0;
    position: relative;
    overflow: hidden;
}
.tncTabHead {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.tncTabHeadTitle {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: rgb(143, 116, 55);
}
.tncTabBody {
    font-size: 15px;
}
.tncTabBody p {
    padding-top: 10px;
}
.tncTabHeadIcon .arrow {
    border-color: rgb(143, 116, 55);
    transition: .5s;
    position: absolute;
}
.tncTabHeadIcon {
    margin: 0 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13px;
}

/* tnc arrows */
.tncTab .arrow.up {
    opacity: 0;
}
.tncTab.active .arrow.up{
    opacity: 1;
}
.tncTab.active .arrow.down{
    opacity: 0;
}

/* tnc body */
.tncTab .tncTabBody {
    transition: .5s;
    max-height: 0;
}
.tncTab.active .tncTabBody {
    transition: .5s;
    max-height: fit-content;
}

.tncTabHead:hover .tncTabHeadTitle, .tncTabHead:hover .tncTabHeadTitle{
    color: rgb(185, 146, 54);
    transition: .1s;
}
.tncTabHead:hover .arrow {
    border-color: rgb(185, 146, 54);
}
.tnc-title {
    margin: 15px 0 5px;
}

.tncTabHeadTitle {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: rgb(143, 116, 55);
}