/* Stepbox default CSS */
.fincia-stepboxes-wrapper.ttm-staticbox-default {
    text-align: start;
}
.ttm-staticbox-default .ttm-ptable-icon-wrapper i {
    font-size: 30px;
    color: var(--ttm-skincolortwo);
}
.ttm-staticbox-default .process-num {
    font-size: 20px;
    font-weight: var(--special-element-fontweight);
    color: var(--ttm-secondarycolor);
    line-height: 20px;
}
.ttm-staticbox-default .ttm-left-contentbox {
    margin-bottom: 100px;
}


/*** vertical default ***/

.ttm-staticbox-default.ttm-stepbox-horizontal .ttm-stepbox-content {
    border: 1px solid var(--ttm-bordercolor);
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
	padding: 20px 20px;

}
.ttm-staticbox-default.ttm-stepbox-horizontal .ttm-stepbox-content .ttm-left-contentbox {
    margin-bottom: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}
.ttm-staticbox-default.ttm-stepbox-horizontal .ttm-stepbox-content .ttm-right-contentbox {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ttm-staticbox-default.ttm-stepbox-horizontal .ttm-stepbox-content .ttm-right-contentbox h4 {
    margin: 0;
}
.ttm-staticbox-default.ttm-stepbox-horizontal .process-num {
    margin-bottom: 0;
}

.fincia-stepboxes-wrapper.ttm-staticbox-default .number{
    background-color: var(--ttm-skincolor);
    padding: 5px 10px;
    padding-left: 30px;
    position: relative;
    font-size: 14px;
    line-height: 22px;
    border-radius: 5px;
    color: var(--ttm-whitecolor);
    transition: all .5s ease-in-out;
}

.fincia-stepboxes-wrapper.ttm-staticbox-default .number::before{
    content: "";
    position: absolute;
    background-color: currentColor; /* SVG takes text color */
    mask: url('../images/sparkle-svg.svg') no-repeat center;
    -webkit-mask: url('../images/sparkle-svg.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    top: 9px;
    left: 9px;
    height: 10px;
    width: 10px;
}

.fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox .ttm-stepbox-content{
    background-color: var(--ttm-skincolortwo);
    border-radius: var(--border-radius-box);
    background-color: var(--ttm-skincolortwo);
    transition: all .5s ease-in-out;
    padding: 30px;
}

.fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox:first-child{
    padding-left: 0;
}
.fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox:last-child{
    padding-right: 0;
}

/* .fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox .ttm-stepbox-content:hover, */
.fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox:nth-of-type(2n) .ttm-stepbox-content{
    background-color: var(--ttm-skincolor);
}

/* .fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox .ttm-stepbox-content:hover .ttm-box-title h4, */
.fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox:nth-of-type(2n) .ttm-stepbox-content .ttm-box-title h4,
/* .fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox .ttm-stepbox-content:hover .fincia-static-box-desc, */
.fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox:nth-of-type(2n) .ttm-stepbox-content .fincia-static-box-desc{
    color: var(--ttm-whitecolor);
}

.fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox .ttm-stepbox-content .ttm-box-title h4,
.fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox:nth-of-type(2n) .ttm-stepbox-content .ttm-box-title h4{
    margin-bottom: 10px;
}

/* .fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox .ttm-stepbox-content:hover .number, */
.fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox:nth-of-type(2n) .ttm-stepbox-content .number {
    box-shadow: 0px 0px 15px 0px rgba(255,255,255,.2);
}

.fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox{
    padding: 0;
}

.fincia-stepboxes-wrapper {
    display: flex;
    flex-wrap: wrap;
}
 
.fincia-stepboxes-wrapper .ttm-stepbox {
    display: flex;
}
 
.fincia-stepboxes-wrapper .ttm-stepbox-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* responsive */

@media(max-width:767px){

    .fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox{
        padding: 0;
    }

    .fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox .ttm-stepbox-content{
        padding: 20px;
        margin-bottom: 0;
    }
    .fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox{
        margin-bottom: 30px;
    }
    .fincia-stepboxes-wrapper.ttm-staticbox-default .ttm-stepbox:last-child{
        margin-bottom: 0;
    }

    .ttm-staticbox-default .ttm-left-contentbox {
        margin-bottom: 70px;
    }
    
    
}