.content-img{
	object-fit: cover;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  aspect-ratio: 1/1;
}

#btn-search{
	cursor: pointer;
}

p.subheading-2{
	font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 30px !important;
    letter-spacing: 0.px !important;
}

p.subheading-1{
	font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 34px !important;
    letter-spacing: 0.px !important;
    color: #6F472A !important;
}

p.paragraph {
	font-size: 16px !important;
	line-height: 24px !important;
	/*font-weight: 400 !important;*/
	letter-spacing: 0.25% !important;
	font-family: 'OpenSans' !important;
}

p.paragraph .found-in{
	font-weight: 700 !important;
	color: #6F472A!important;
    text-decoration: underline;
}

.main-link {
    text-decoration: none;
    color: unset;
}

input.form-control{
	padding: 8px 12px !important;
	border-radius: 8px !important;
	border : 1px solid #CCCCCC !important;
	border-right: none !important;
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	font-family: 'OpenSans'!important;
	font-weight: 400!important;
	font-size: 16px !important;
}

.input-group-text{
	padding: 8px 12px !important;
	border-radius: 8px !important;
	border-color : #CCCCCC !important;
	border-left: none !important;
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

input.form-control::placeholder{
	color: #999999 !important;
	font-family: 'OpenSans'!important;
	font-weight: 400;
	font-size: 16px !important;
}

.item-center{
	place-items:center;
}


.content{
	position: relative;
    display: inline-grid;
    justify-items: self-end;
}

.nav-tabs-custom .nav-item .nav-link span{
	color: #6F472A !important;
    font-weight: 400 ;
    font-size: 16px !important;
    font-family: 'OpenSans' !important;
}

.nav-tabs-custom .nav-item .nav-link.active span{
    font-weight: 700 !important;
}

.nav-tabs,.nav-pills {
  > li {
      > a {
          color: $gray-700;
          font-weight: $font-weight-medium;
      }
  }
}

.nav-tabs-custom {
  border-bottom: none !important;

  .nav-item {
    position: relative;
    .nav-link {
      border: none;

      &::after {
        content: "";
        background: #F6E3D5 !important;
        height: 2px;
        position: absolute;
        width: 100%;
        left: 0;
        bottom: -1px;
        transition: all 250ms ease 0s;
        transform: scale(0);
      }

      &.active{
        color: #6F472A;
        &:after{
          transform: scale(1);
        }
      }

    }
  }
}

.nav-tabs-custom .nav-item .nav-link::after {
    content: "";
    background: #F6E3D5 !important;
    height: 1px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -1px;
    transform: scale(1);
}

.nav-tabs-custom .nav-item .nav-link.active::after {
    content: "";
    background: #6F472A !important;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -1px;
}

@media screen and (max-width: 767px) {
	.nav-tabs-custom{
		display: contents;
	}

	.nav-tabs-custom .nav-item .nav-link::after{
	    bottom: 1px !important;
	}
}

.form-control:focus {
    border-color: #dee2e6 !important;
    box-shadow: none !important; 
}
