/* ===============================
			HEADING
=============================== */
.ts-heading-wrap{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.ts-overlay-text{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:0;
    white-space:nowrap;
    pointer-events:none;
    line-height:1;
	width: 100%;
}

.ts-heading-title{
    position:relative;
    z-index:1;
}
.ts-heading-wrapper,
.ts-heading-subtitle,
.ts-heading-title
{position:relative; z-index:199;
}

.ts-heading-content .ts-heading-subtitle{
display: inline-flex;
align-items: center;
gap: 10px;	
}
.ts-heading-sep-1 .ts-heading-divider{
 display: inline-flex;
    width: auto;
    position: relative;
}
.ts-heading-sep-1 .ts-heading-divider:before {
content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  z-index:99;
  background-color: var(--theme-color);
}
.ts-heading-sep-1 .ts-heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 95%;
  max-width: 155px;
  z-index:98;
  background-color: var(--theme-secondary-color);
}
.align-center .ts-heading-sep-1 .ts-heading-divider:before {
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: -2px;
}
.align-center .ts-heading-sep-1 .ts-heading-divider:after {
  left: 50%;
  transform: translate(-50%, -50%);
}
.align-right .ts-heading-sep-1 .ts-heading-divider:before {
  left: auto;
  right:0;
  transform: translate(-50%, -50%);
}
.align-right .ts-heading-sep-1 .ts-heading-divider:after {
  left: auto;
  right:0;
  transform: translate(-50%, -50%);
}
.ts-heading-subtitle .ts-sep-icon
{
display:inline-flex;
font-size:20px;
}
.ts-heading-subtitle .ts-sep-icon svg
{
width:10px;
height:10px;
}
.style-1 .ts-heading-content .ts-heading-subtitle::before,
.style-1 .ts-heading-content .ts-heading-subtitle::after{
    content:"";
    width:10px;
    height:10px;
    background:var(--theme-color);
    position:relative;
    border-radius:50%;
}
.style-1 .ts-heading-content .ts-heading-subtitle::before,
.style-1 .ts-heading-content .ts-heading-subtitle::after{
    content:"";
    width:10px;
    height:10px;
    background:var(--theme-color);
    position:relative;
    border-radius:50%;
}
.ts-separator-icon- .ts-heading-content .ts-heading-subtitle::before,
.ts-separator-icon- .ts-heading-content .ts-heading-subtitle::after {
    display: none;
}

.ts-separator-icon-yes .ts-heading-content .ts-heading-subtitle::before,
.ts-separator-icon-yes .ts-heading-content .ts-heading-subtitle::after {
    display: inline-block;
}
/* Hide left */
.ts-heading-subtitle.hide-sep-left .ts-sep-icon.ts-sep-icon-left
{
display:none;	
}
.ts-heading-subtitle.hide-sep-right .ts-sep-icon.ts-sep-icon-right
{
display:none;	
}
.ts-heading-subtitle.hide-sep-left::before{
    display:none;
}

/* Hide right */
.ts-heading-subtitle.hide-sep-right::after{
    display:none;
}
/* Center */
.align-left .ts-heading-content {text-align: left;}
.align-center .ts-heading-content {text-align: center;}
.align-right .ts-heading-content {text-align: right;}

.ts-separator{display:block;margin:10px 0}
.ts-separator{
margin:0px auto;
position:relative;    text-align:center;
}
.ts-heading-title{
    font-weight:700;
    line-height:1.3;
}

/* Highlight styles */
.ts-heading-title span{
    position:relative; display:inline-block;
}
/* Solid color */
.ts-heading-wrapper .highlight-color .ts-heading-title span{
    color:#ff5e57;
}
/* Background */
.ts-heading-wrapper .highlight-background span{
    background:#ffeaa7;
    padding:2px 6px;
    border-radius:4px;
}

.highlight-gradient .ts-heading-title span * {
    background-image: linear-gradient(0deg, var(--e-global-color-primary), var(--e-global-color-accent));
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
/* Underline */
.highlight-underline span:after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:100%;
    height:3px;
    background:#ff5e57;
}
/* Line + Dot */
.ts-separator.style2{
    width:80px;
    height:2px;
    background:#333;
    position:relative;
}
.ts-separator.style2:after{
    content:'';
    width:10px;
    height:10px;
    background:#333;
    border-radius:50%;
    position:absolute;
    top:-4px;
    left:50%;
    transform:translateX(-50%);
}

/* Double Line */
.ts-separator.style3{
    width:70px;
    border-top:2px solid #333;
    border-bottom:2px solid #333;
    height:6px;
}

/* Animated Line */
.ts-separator.style5{
    width:0;
    height:3px;
    background:#ff5e57;
    animation:growLine 1s ease forwards;
}
.ts-separator {
    width: 100%;
    align-items: center;
}

.ts-separator-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ts-separator svg {
    width: 100%;
    height: 100%;
    
    display: block !important;
}
/* Icon separator */
.ts-separator i{
    display:inline-block;
    transition:0.3s;
}
.ts-heading-wrapper:hover .ts-separator i{
    transform:translateY(-3px);
}
.ts-separator svg{
    width:100%;
    height:100%;
}
.ts-separator.flip-horizontal svg,
.ts-separator.flip-horizontal i {
    transform: scaleX(-1);
}

.ts-separator.flip-vertical svg,
.ts-separator.flip-vertical i {
    transform: scaleY(-1);
}

.ts-separator.flip-both svg,
.ts-separator.flip-both i {
    transform: scale(-1, -1);
}
@keyframes growLine{
    to{width:100px;}
}
.ts-line-wrap{
    overflow:hidden;
    display:block;
}

.ts-line{
    display:block;
    will-change:transform;
}
.ts-line-mask{
    overflow:hidden;
    display:block;
    line-height:inherit;
}

.ts-line-inner{
    display:block;
    will-change:transform;
}