/* ----------------[TABS]---------------- */
.e-add-tabs {
    position: relative;
    /* overflow: hidden; */
    margin: 0 auto;
    width: 100%;
    /*font-weight: 300;
    font-size: 1.25em;*/
}

/* Nav */
.e-add-tabs > nav {
    text-align: center;
    display: flex;
    justify-content: center;
}

.e-add-tabs > nav ul {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;

    padding: 0;
    max-width: 1200px;
    width: 100%;
    list-style: none;

    -ms-box-orient: horizontal;
    -ms-box-pack: center;

    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;

    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

.e-add-tabs > nav ul li {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    text-align: center;

    flex-grow: 1;
    flex-shrink: 1;
}
@media screen and (max-width: 767px) {
    .e-add-tabs > nav ul li {
        flex-basis: 100%;
    }
}
.e-add-tabs > nav a {
    position: relative;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 2.5;

    position: relative;
    z-index: 1;
}

.e-add-tabs > nav a .e-add-tab-title {
    vertical-align: middle;
}

/*
@p solo perr gli stili con allineamento orizzontale imposto il flex
*/
.e-add-tabs.e-add-tabs-style-iconbox > nav a .e-add-tab-title,
.e-add-tabs.e-add-tabs-style-bar > nav a .e-add-tab-title,
.e-add-tabs.e-add-tabs-style-underline > nav a .e-add-tab-title,
.e-add-tabs.e-add-tabs-style-linetriangle > nav a .e-add-tab-title,
.e-add-tabs.e-add-tabs-style-shape > nav a .e-add-tab-title, 
.e-add-tabs.e-add-tabs-style-linebox > nav a .e-add-tab-title,
.e-add-tabs.e-add-tabs-style-flip > nav a .e-add-tab-title,
.e-add-tabs.e-add-tabs-style-fillup > nav a .e-add-tab-title{
    display: flex;
    justify-content: center;
    align-items: center;
}


.e-add-tab > nav a .e-add-tab-icon{
    margin: 10px;
}

.e-add-tabs:not(.e-add-tabs-style-iconfall):not(.e-add-tabs-style-underline):not(.e-add-tabs-style-linetriangle):not(.e-add-tabs-style-circle) > nav li.tab-current a, 
.e-add-tabs:not(.e-add-tabs-style-iconfall):not(.e-add-tabs-style-underline):not(.e-add-tabs-style-linetriangle):not(.e-add-tabs-style-circle) > nav li.tab-current .e-add-tab-icon {
    color: #FFF;
}

.e-add-tabs > nav a:focus {
    outline: none;
}

/* Icons */
/* .e-add-tab-item .e-add-tab-icon, .e-add-tab-item  .e-add-tab-title svg{
    z-index: 10;
    display: inline-block;
    margin: 0 0.4em 0 0;
    text-transform: none;
    font-variant: normal;
    color: initial;
    font-family: 'Font Awesome 5 Free';
    speak: none;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
} */
.e-add-tab-item .e-add-tab-icon, .e-add-tab-item  .e-add-tab-title svg{
    margin: 0 0.4em 0 0;
    transition: color 0.5s ease;
}
.e-add-tab-item  .e-add-tab-title svg{
    width: 1.3em;
    height: 1.3em;
}
/* Content */
.e-add-tab-content-wrap {
    position: relative;
}
.elementor-element-edit-mode .e-add-tab-content-wrap {
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*
.e-add-tab-content-wrap .e-add-tab-content-element {
    display: none;
    -webkit-animation: fadeOut .7s ease both;
	animation: fadeOut .7s ease both;
}

.e-add-tab-content-wrap .e-add-tab-content-element.content-current {
    display: block;
    -webkit-animation: fadeInLeft .7s ease both;
	animation: fadeInLeft .7s ease both;
}
*/
.e-add-tab-content-wrap{
    position: relative;
    transition: height 0.5s ease, min-height 0.5s ease;
    /* overflow: hidden; */
}

/* TABS content ALL */
.e-add-tab-content-wrap:not(.e-add-tab-effect-none) .e-add-tab-content-element{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
.e-add-tab-content-wrap:not(.e-add-tab-effect-none) .e-add-tab-content-element.e-position-static {
    position: static;
}
.e-add-tab-content-wrap:not(.e-add-tab-effect-none) .e-add-tab-content-element.e-position-relative {
    position: relative;
}
.e-add-tab-content-wrap .e-add-tab-content-element.content-current{
    z-index: 2;
}
.e-add-tab-content-wrap:not(.e-add-tab-effect-none) .e-add-tab-content-element.content-current{
    display: block;
}
/* TABS content NONE */
.e-add-tab-content-wrap.e-add-tab-effect-none .e-add-tab-content-element{
    display: none;
}
.e-add-tab-content-wrap.e-add-tab-effect-none .e-add-tab-content-element.content-current{
    display: block;
}

/* TABS content FADE */
.e-add-tab-content-wrap.e-add-tab-effect-fade .e-add-tab-content-element{
    -webkit-animation: tab_fadeOut .7s cubic-bezier(.17,.84,.44,1) both;
    animation: tab_fadeOut .7s cubic-bezier(.17,.84,.44,1) both;
}
.e-add-tab-content-wrap.e-add-tab-effect-fade .e-add-tab-content-element.content-current{
    opacity: 0;
    display: block;
    -webkit-animation: tab_fadeIn 1s cubic-bezier(.65,.05,.36,1) both;
    animation: tab_fadeIn 1s cubic-bezier(.65,.05,.36,1) both;
}

/* TABS content SLIDE */
.e-add-tab-content-wrap.e-add-tab-effect-slide .e-add-tab-content-element{
    -webkit-animation: tab_slideOut .7s cubic-bezier(.65,.05,.36,1) both;
    animation: tab_slideOut 0.4s cubic-bezier(.65,.05,.36,1) both;
}
.e-add-tab-content-wrap.e-add-tab-effect-slide .e-add-tab-content-element.content-current{
    transform: translate(-100%,0);
    display: block;
    -webkit-animation: tab_slideIn 1s cubic-bezier(.65,.05,.36,1) both;
    animation: tab_slideIn 0.6s cubic-bezier(.65,.05,.36,1) both;
}

/* TABS content SLIDE-TOP */
.e-add-tab-content-wrap.e-add-tab-effect-slidetop .e-add-tab-content-element{
    -webkit-animation: tab_slidetopOut .7s cubic-bezier(.65,.05,.36,1) both;
    animation: tab_slidetopOut 0.4s cubic-bezier(.65,.05,.36,1) both;
}
.e-add-tab-content-wrap.e-add-tab-effect-slidetop .e-add-tab-content-element.content-current{
    transform: translate(0,100%);
    display: block;
    -webkit-animation: tab_slidetopIn 1s cubic-bezier(.65,.05,.36,1) both;
    animation: tab_slidetopIn 0.6s cubic-bezier(.65,.05,.36,1) both;
}

/* TABS content ZOOM */
.e-add-tab-content-wrap.e-add-tab-effect-zoom .e-add-tab-content-element{
    -webkit-animation: tab_zoomOut .7s cubic-bezier(.65,.05,.36,1) both;
    animation: tab_zoomOut 0.4s cubic-bezier(.65,.05,.36,1) both;
}
.e-add-tab-content-wrap.e-add-tab-effect-zoom .e-add-tab-content-element.content-current{
    transform: scale(0.5);
    opacity: 0;
    display: block;
    -webkit-animation: tab_zoomIn 1s cubic-bezier(.65,.05,.36,1) both;
    animation: tab_zoomIn 0.6s cubic-bezier(.65,.05,.36,1) both;
}
/* Content TRANSITIONS */


/* FADE */
@-webkit-keyframes tab_fadeIn {
	from { }
	to { opacity: 1; }
}
@keyframes tab_fadeIn {
	from { }
	to { opacity: 1; }
}
@-webkit-keyframes tab_fadeOut {
	from { }
	to { opacity: 0; visibility: hidden;}
}
@keyframes tab_fadeOut {
	from { }
	to { opacity: 0;  visibility: hidden;}
}
/* SLIDE */
@-webkit-keyframes tab_slideIn {
	from { }
	to { transform: translate(0,0); }
}
@keyframes tab_slideIn {
	from { }
	to { transform: translate(0,0); }
}
@-webkit-keyframes tab_slideOut {
	from { }
	to { transform: translate(100%,0); visibility: hidden; opacity: 0;}
}
@keyframes tab_slideOut {
	from { }
	to { transform: translate(100%,0);  visibility: hidden; opacity: 0;}
}
/* SLIDE-TOP */
@-webkit-keyframes tab_slidetopIn {
	from { }
	to { transform: translate(0,0); }
}
@keyframes tab_slidetopIn {
	from { }
	to { transform: translate(0,0); }
}
@-webkit-keyframes tab_slidetopOut {
	from { }
	to { transform: translate(0,-100%); visibility: hidden; opacity: 0;}
}
@keyframes tab_slidetopOut {
	from { }
	to { transform: translate(0,-100%);  visibility: hidden; opacity: 0;}
}
/* ZOOM */
@-webkit-keyframes tab_zoomIn {
	from { }
	to { opacity: 1; transform: scale(1); }
}
@keyframes tab_zoomIn {
	from { }
	to { opacity: 1; transform: scale(1); }
}
@-webkit-keyframes tab_zoomOut {
	from { }
	to { opacity: 0; transform: scale(1.2); visibility: hidden; opacity: 0;}
}
@keyframes tab_zoomOut {
	from { }
	to { opacity: 0; transform: scale(1.2);  visibility: hidden; opacity: 0;}
}





/* Fallback */

@media screen and (max-width: 58em) {
    .e-add-tabs > nav a.e-add-tab-icon .e-add-tab-title {
        display: none;
    }
    .e-add-tabs > nav a:before {
        margin-right: 0;
    }
}


/*****************************/
/* Bar */
/*****************************/
/* .e-add-tabs-style-bar > nav {
    background: rgba(40,44,42,0.05);
} */

/* .e-add-tabs-style-bar > nav ul {
    border: 4px solid transparent;
} */

.e-add-tabs-style-bar > nav ul li a {
    padding: 0 10px;
    /* background-color: #f7f7f7; */
    color: #74777b;
    transition: background-color 0.2s, color 0.2s;
}

.e-add-tabs-style-bar > nav ul li a:hover,
.e-add-tabs-style-bar > nav ul li a:focus {
    color: #000000;
}

.e-add-tabs-style-bar > nav ul li a .e-add-tab-title {
    /* text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 0.6em; */
}

.e-add-tabs-style-bar > nav ul li.tab-current a {
    background: #000000;
    color: #fff;
}
.e-add-tabs-style-bar > nav ul li.tab-current a svg.e-add-tab-icon {
    fill: #FFF
}
/*****************************/
/* Icon box */
/*****************************/

.e-add-tabs-style-iconbox > nav {
    background: rgba(255,255,255,0.4);
}

.e-add-tabs-style-iconbox > nav ul li a {
    overflow: visible;
    padding: 1em 0;
    
    color: #000;

    line-height: 1;

    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.e-add-tabs-style-iconbox > nav ul li a .e-add-tab-title {
    font-weight: 700;
    font-size: 0.7em;
}
.e-add-tabs-style-iconbox > nav ul li{
    margin-bottom: 12px;
}
.e-add-tabs-style-iconbox > nav ul li.tab-current {
    z-index: 100;
}

.e-add-tabs-style-iconbox > nav ul li.tab-current a {
    background: #000;
    box-shadow: -1px 0 0 #000;
    color: #FFF;
}

.e-add-tabs-style-iconbox > nav ul li.tab-current a::after {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    border-top-color: #000;
    content: '';
    pointer-events: none;
}

.e-add-tabs-style-iconbox > nav ul li:first-child::before,
.e-add-tabs-style-iconbox > nav ul li::after {
    position: absolute;
    top: 20%;
    right: 0;
    z-index: -1;
    width: 1px;
    height: 60%;
    background: rgba(0,0,0,0.07);
    content: '';
}

.e-add-tabs-style-iconbox > nav ul li:first-child::before {
    right: auto;
    left: 0;
}

.e-add-tabs-style-iconbox > .e-add-tab-icon {
    display: block;
    margin: 0 0 0.25em 0;
}

/*****************************/
/* Underline */
/*****************************/

.e-add-tabs-style-underline > nav {
    background: #fff;
}

.e-add-tabs-style-underline > nav a {
    padding: 0.25em 0 0.5em;

    -webkit-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
}

.e-add-tabs-style-underline > nav li:last-child a {
}

/* le 2 linee */
.e-add-tabs-style-underline > nav li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #000000;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate3d(0,150%,0);
    transform: translate3d(0,150%,0);
}
.e-add-tabs-style-underline > nav li a::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #000000;
    content: '';
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transform: translate3d(0,-150%,0);
    transform: translate3d(0,-150%,0);
}

.e-add-tabs-style-underline > nav li.tab-current a::after {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.e-add-tabs-style-underline > nav li.tab-current a::before {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.e-add-tabs-style-underline > nav a .e-add-tab-title,
.e-add-tabs-style-underline > nav a .e-add-tab-icon{
    color: #000;
}
/*****************************/
/* Triangle and line */
/*****************************/

.e-add-tabs-style-linetriangle > nav a {
    overflow: visible;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    color: #000;
}
.e-add-tabs-style-linetriangle .e-add-tab-icon {
    margin: 0 10px 0 0;
    color: #000;
}
.e-add-tabs-style-linetriangle .e-add-tab-item {
    margin-bottom: 11px;
}
.e-add-tabs-style-linetriangle > nav a .e-add-tab-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1em;
}

.e-add-tabs-style-linetriangle > nav li.tab-current a:after,
.e-add-tabs-style-linetriangle > nav li.tab-current a:before {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border: solid transparent;
    content: '';
    pointer-events: none;
}

.e-add-tabs-style-linetriangle > nav li.tab-current a:after {
    margin-left: -10px;
    border-width: 10px;
    border-top-color: #FFF;
}

.e-add-tabs-style-linetriangle > nav li.tab-current a:before {
    margin-left: -11px;
    border-width: 11px;
    border-top-color: rgba(0,0,0,0.2);
}

@media screen and (max-width: 58em) {
    .e-add-tabs-style-linetriangle > nav {
        font-size: 0.6em;
    }
}

/*****************************/
/* Top Line */
/*****************************/

.e-add-tabs-style-topline {
    max-width: 1200px;
}

.e-add-tabs-style-topline > nav li {
    border: 1px solid rgba(40,44,42,0.1);
}

.e-add-tabs-style-topline > nav li:not(:last-child) {
    border-right: none;
}

.e-add-tabs-style-topline > nav li.tab-current {
    border-top-color: #000000;
    border-bottom: none;
}

.e-add-tabs-style-topline > nav a {
    padding: 0.65em 0 0.5em;
    background: rgba(40,44,42,0.05);
    color: #74777b;
    line-height: 1;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.e-add-tabs-style-topline > nav a:hover,
.e-add-tabs-style-topline > nav a:focus {
    color: #000000;
}

.e-add-tabs-style-topline > nav li.tab-current a {
    background: none;

    color: #000000;
}
.e-add-tabs-style-topline > nav li.tab-current a:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    border-top: 3px solid #000000;
}
.e-add-tabs-style-topline .e-add-tab-icon {
    display: block;
    margin: 0;
}

.e-add-tabs-style-topline > nav a .e-add-tab-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.5em;
}

/*****************************/
/* Falling Icon, from http://vintageproductions.eu/grid/interactivity/ */
/*****************************/

.e-add-tabs-style-iconfall {
    overflow: visible;
}

.e-add-tabs-style-iconfall > nav a {
    display: inline-block;
    overflow: visible;
    padding: 1em 0 2em;
    color: #74777b;
    line-height: 1;
    -webkit-transition: color 0.3s cubic-bezier(0.7,0,0.3,1);
    transition: color 0.3s cubic-bezier(0.7,0,0.3,1);
}

.e-add-tabs-style-iconfall > nav a:hover,
.e-add-tabs-style-iconfall > nav a:focus,
.e-add-tabs-style-iconfall > nav li.tab-current a {
    color: #000000;
}

.e-add-tabs-style-iconfall > nav a .e-add-tab-title {
    font-weight: 700;
}

.e-add-tabs-style-iconfall > nav li::before {
    position: absolute;
    bottom: 1em;
    left: 50%;
    margin-left: -20px;
    width: 40px;
    height: 4px;
    background: #000000;
    content: '';
    opacity: 0;
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    -webkit-transform: scale3d(0,1,1);
    transform: scale3d(0,1,1);
}

.e-add-tabs-style-iconfall > nav li.tab-current::before {
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}

.e-add-tabs-style-iconfall .e-add-tab-icon, .e-add-tabs-style-iconfall .e-add-tab-item .e-add-tab-title svg {
    display: block;
    margin: 0 0 0.35em;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    -webkit-transform: translate3d(0,-100px,0);
    transform: translate3d(0,-100px,0);
    pointer-events: none;
}
.e-add-tabs-style-iconfall .e-add-tab-title svg.e-add-tab-icon, .e-add-tabs-style-iconfall .e-add-tab-item .e-add-tab-title svg {
    margin: 0 auto 0.35em auto 
}
.e-add-tabs-style-iconfall > nav li.tab-current .e-add-tab-icon, .e-add-tabs-style-iconfall > nav li.tab-current .e-add-tab-title svg {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

@media screen and (max-width: 58em) {
    .e-add-tabs-style-iconfall > nav li .e-add-tab-icon, .e-add-tabs-style-iconfall > nav li.tab-current .e-add-tab-title svg  {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

/*****************************/
/* Moving Line */
/*****************************/

.e-add-tabs-style-linemove > nav {
    background: #fff;
}

.e-add-tabs-style-linemove > nav li:first-child::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #000000;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

/* Move the line */
.e-add-tabs-style-linemove > nav li:first-child.tab-current::before {
    -webkit-transform: translate3d(0%,0,0);
    transform: translate3d(0%,0,0);
}

.e-add-tabs-style-linemove > nav li:nth-child(2).tab-current ~ li:first-child::before {
    -webkit-transform: translate3d(200%,0,0);
    transform: translate3d(200%,0,0);
}

.e-add-tabs-style-linemove > nav li:nth-child(3).tab-current ~ li:first-child::before {
    -webkit-transform: translate3d(300%,0,0);
    transform: translate3d(300%,0,0);
}

.e-add-tabs-style-linemove > nav li:nth-child(4).tab-current ~ li:first-child::before {
    -webkit-transform: translate3d(400%,0,0);
    transform: translate3d(400%,0,0);
}

.e-add-tabs-style-linemove > nav li:nth-child(5).tab-current ~ li:first-child::before {
    -webkit-transform: translate3d(500%,0,0);
    transform: translate3d(500%,0,0);
}

.e-add-tabs-style-linemove > nav li:nth-child(6).tab-current ~ li:first-child::before {
    -webkit-transform: translate3d(600%,0,0);
    transform: translate3d(600%,0,0);
}

.e-add-tabs-style-linemove > nav li:nth-child(7).tab-current ~ li:first-child::before {
    -webkit-transform: translate3d(700%,0,0);
    transform: translate3d(-700%,0,0);
}

.e-add-tabs-style-linemove > nav li:nth-child(8).tab-current ~ li:first-child::before {
    -webkit-transform: translate3d(800%,0,0);
    transform: translate3d(800%,0,0);
}
.e-add-tabs-style-linemove > nav li:nth-child(9).tab-current ~ li:first-child::before {
    -webkit-transform: translate3d(900%,0,0);
    transform: translate3d(900%,0,0);
}

.e-add-tabs-style-linemove > nav a {
    padding: 1em 0;
    color: #74777b;
    line-height: 1;
    -webkit-transition: color 0.3s, -webkit-transform 0.3s;
    transition: color 0.3s, transform 0.3s;
}

.e-add-tabs-style-linemove > nav li.tab-current a {
    color: #000000;
    -webkit-transform: translate3d(0,8px,0);
    transform: translate3d(0,8px,0);
}

.e-add-tabs-style-linemove > nav a .e-add-tab-title {
    font-weight: 700;
}

/*****************************/
/* Line */
/*****************************/

.e-add-tabs-style-line > nav ul {
    padding: 0;
    max-width: none;
    box-shadow: inset 0 -2px #d1d3d2;
}

.e-add-tabs-style-line > nav a {
    padding: 0.7em 0.4em;
    box-shadow: inset 0 -2px #d1d3d2;
    color: #74777b;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.8em;
    line-height: 1;
    -webkit-transition: color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, box-shadow 0.3s;
}

.e-add-tabs-style-line > nav a:hover,
.e-add-tabs-style-line > nav a:focus {
    /* box-shadow: inset 0 -2px #74777b; */
}

.e-add-tabs-style-line > nav li.tab-current a {
    /* box-shadow: inset 0 -2px #000000; */
    color: #000000;
}
.e-add-tabs-style-line > nav a:hover:after,
.e-add-tabs-style-line > nav a:focus:after,
.e-add-tabs-style-line > nav li.tab-current a:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    border-bottom: 3px solid #000000;
}
@media screen and (max-width: 58em) {
    .e-add-tabs-style-line > nav ul {
        display: block;
        box-shadow: none;
    }
    .e-add-tabs-style-line > nav ul li {
        display: block;
        -webkit-flex: none;
        flex: none;
    }
}

/*****************************/
/* Circle */
/*****************************/

.e-add-tabs-style-circle {
    overflow: visible;
}

.e-add-tabs-style-circle > nav li::before {
    position: absolute;
    top: 50%;
    left: 50%;
    
    margin: -50px 0 0 -50px;
    
    width: 100px;
    height: 100px;

    border: 1px solid #000000;
    border-radius: 50%;
    
    content: '';
    opacity: 0;
    
    -webkit-transform: scale3d(1.3,1.3,1.3);
    transform: scale3d(1.3,1.3,1.3);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s, background-color 0.6s;
    
    transition: transform 0.4s, opacity 0.4s, background-color 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

@media screen and (max-width: 58em) {
    .e-add-tabs-style-circle > nav li::before {
        margin: -40px 0 0 -40px;
        width: 80px;
        height: 80px;
    }
}

.e-add-tabs-style-circle > nav li.tab-current::before {
    opacity: 1;

    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}

.e-add-tabs-style-circle > nav a {
    overflow: visible;
    color: #000;
    
    font-weight: 700;
    font-size: 0.9em;
    line-height: 1.1;

    padding: 10px;
    
    -webkit-transition: color 0.3s cubic-bezier(0.7,0,0.3,1);
    transition: color 0.3s cubic-bezier(0.7,0,0.3,1);
}

.e-add-tabs-style-circle > nav a .e-add-tab-title {
    display: inline-block;
}

.e-add-tabs-style-circle > nav a .e-add-tab-title,
.e-add-tabs-style-circle .e-add-tab-icon {
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7,0,0.3,1);
    transition: transform 0.3s cubic-bezier(0.7,0,0.3,1);
}

.e-add-tabs-style-circle > nav a:hover,
.e-add-tabs-style-circle > nav a:focus {
    color: #4a4a4b;
}

.e-add-tabs-style-circle > nav li.tab-current a {
    color: #000000;
}

.e-add-tabs-style-circle > nav li.tab-current a .e-add-tab-title {
    -webkit-transform: translate3d(0,4px,0);
    transform: translate3d(0,4px,0);
}

.e-add-tabs-style-circle .e-add-tab-icon {
    display: block;
    margin: 0;
    pointer-events: none;

    font-size: 2em;
    margin-bottom: 5px;
}

.e-add-tabs-style-circle > nav li.tab-current .e-add-tab-icon {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
}

/*****************************/
/* Shape */
/*****************************/

.e-add-tabs-style-shape {
    max-width: 1200px;
}

.e-add-tabs-style-shape > nav ul li {
    margin: 0 3em;
}

.e-add-tabs-style-shape > nav ul li:first-child {
    margin-left: 0;
}

.e-add-tabs-style-shape > nav ul li.tab-current {
    z-index: 100;
}

.e-add-tabs-style-shape > nav li a {
    overflow: visible;
    margin: 0 -3em 0 0;
    padding: 0;
    color: #000000;
}

.e-add-tabs-style-shape > nav li:first-child a .e-add-tab-title {
    padding-left: 2em;
    border-radius: 30px 0 0 0;
}

.e-add-tabs-style-shape > nav li:last-child a .e-add-tab-title {
    padding-right: 2em;
    border-radius: 0 30px 0 0;
}

.e-add-tabs-style-shape > nav li a svg.tabshape {
    position: absolute;
    left: 100%;
    margin: 0;
    width: 3em;
    height: 100%;
    fill: #f5f5f5;
}

.e-add-tabs-style-shape > nav li a svg.tabshape:nth-child(2),
.e-add-tabs-style-shape > nav li:last-child a svg.tabshape {
    right: 100%;
    left: auto;
    -webkit-transform: scale3d(-1,1,1);
    transform: scale3d(-1,1,1);
}

.e-add-tabs-style-shape > nav li a .e-add-tab-title {
    overflow: hidden;
    padding: 0.65em 0;
    background-color: #f5f5f5;
    text-overflow: ellipsis;
    white-space: nowrap;

    transition: background-color 0.5s ease, color 0.5s ease;
}

.e-add-tabs-style-shape > nav li a:hover .e-add-tab-title {
    background-color: #000000;


}
.e-add-tabs-style-shape > nav li a:hover svg.tabshape {
    transition: fill 0.5s ease;
}
.e-add-tabs-style-shape > nav li a:hover svg.tabshape {
    fill: #000000;
}

/* Make only shape clickable */
.e-add-tabs-style-shape > nav li a svg.tabshape {
    pointer-events: none;
}

.e-add-tabs-style-shape > nav li a svg.tabshape use {
    pointer-events: auto;
    transition: fill 0.5s ease;
}


.e-add-tabs-style-shape > nav li.tab-current a .e-add-tab-title {
    background: #000000;
    color: #FFFFFF;
}

.e-add-tabs-style-shape > nav li.tab-current a svg.tabshape {
    fill: #000000;
}
/*
.e-add-tabs-style-shape .e-add-tab-content-wrap {
        background: #f5f5f5;
}
*/
@media screen and (max-width: 58em) {
    .e-add-tabs-style-shape > nav ul {
        display: block;
        padding-top: 1.5em;
    }
    .e-add-tabs-style-shape > nav ul li {
        display: block;
        margin: -1.25em 0 0;
        -webkit-flex: none;
        flex: none;
    }
    .e-add-tabs-style-shape > nav ul li a {
        margin: 0;
    }
    .e-add-tabs-style-shape > nav ul li .e-add-tab-title svg.tabshape {
        display: none;
    }
    .e-add-tabs-style-shape > nav ul li a .e-add-tab-title {
        padding: 1.25em 0 2em !important;
        border-radius: 30px 30px 0 0 !important;
        box-shadow: 0 -1px 2px rgba(0,0,0,0.1);
        line-height: 1;
    }
    .e-add-tabs-style-shape > nav ul li:last-child a .e-add-tab-title {
        padding: 1.25em 0 !important;
    }
    .e-add-tabs-style-shape > nav ul li.tab-current {
        z-index: 1;
    }
}

/*****************************/
/* Line Box */
/*****************************/

.e-add-tabs-style-linebox > nav ul li {
    margin: 0 0.5em;
    -webkit-flex: none;
    flex: none;
}

.e-add-tabs-style-linebox > nav a {
    padding: 0 1.5em;
    color: #000000;
    font-weight: 700;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

/*
.e-add-tabs-style-linebox nav a:hover,
.e-add-tabs-style-linebox nav a:focus {
        color: #cccccc;
}
*/

.e-add-tabs-style-linebox > nav li.tab-current a {
    color: #FFFFFF;
}
.e-add-tabs-style-linebox > nav li.tab-current a:hover,
.e-add-tabs-style-linebox > nav li.tab-current a:focus {
    color: #CCCCCC;
}

.e-add-tabs-style-linebox > nav a::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #cccccc;
    content: '';
    -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
    transition: background-color 0.3s, transform 0.3s;
    -webkit-transition-timing-function: ease, cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: ease, cubic-bezier(0.7,0,0.3,1);
    -webkit-transform: translate3d(0,100%,0) translate3d(0,-3px,0);
    transform: translate3d(0,100%,0) translate3d(0,-3px,0);
}

.e-add-tabs-style-linebox > nav li.tab-current a::before {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.e-add-tabs-style-linebox > nav a:hover::before,
.e-add-tabs-style-linebox > nav a:focus::before,
.e-add-tabs-style-linebox > nav li.tab-current a::before {
    background: #000000;
}

@media screen and (max-width: 58em) {
    .e-add-tabs-style-linebox > nav ul {
        display: block;
        box-shadow: none;
    }
    .e-add-tabs-style-linebox > nav ul li {
        display: block;
        -webkit-flex: none;
        flex: none;
    }
}

/*****************************/
/* Flip */
/*****************************/

.e-add-tabs-style-flip {
    max-width: 1200px;
}

.e-add-tabs-style-flip > nav a {
    padding: 0.5em 0;
    color: #000000;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.e-add-tabs-style-flip > nav a:hover,
.e-add-tabs-style-flip > nav a:focus {
    color: #CCCCCC;
}
.e-add-tabs-style-flip > nav li.tab-current a{
    color: #FFF;
}
.e-add-tabs-style-flip > nav a .e-add-tab-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.625em;
}

.e-add-tabs-style-flip > nav a::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    /* background-color: #f0f0f0; */
    content: '';
    
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s;
    
    -webkit-transform: perspective(900px) rotate3d(1,0,0,90deg);
    transform: perspective(900px) rotate3d(1,0,0,90deg);
    
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    
    -webkit-perspective-origin: 50% 100%;
    perspective-origin: 50% 100%;
}

.e-add-tabs-style-flip > nav li.tab-current a::after {
    background-color: #000000;
   
    -webkit-transform: perspective(900px) rotate3d(1,0,0,0deg);
    
    transform: perspective(900px) rotate3d(1,0,0,0deg);
}
/*
.e-add-tabs-style-flip .e-add-tab-content-wrap {
        background: #f5f5f5;
}
*/


/*****************************/
/* Fill up */
/*****************************/

.e-add-tabs-style-fillup > nav ul li a {
    padding: 1em 0;

    line-height: 1;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    
    transition: 0.4s all cubic-bezier(.23,1,.32,1);
}

.e-add-tabs-style-fillup > nav ul li:last-child a {
    border: none;
}

.e-add-tabs-style-fillup > nav ul li.tab-current {
    z-index: 100;
}

.e-add-tabs-style-fillup > nav ul li.tab-current a, .e-add-tabs-style-fillup > nav ul li.tab-current a .e-add-tab-title svg {
    color: #fff;
    fill: #fff;
}

.e-add-tabs-style-fillup > nav ul li a::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #000000;
    content: '';
    
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(.23,1,.32,1), background-color 0.3s cubic-bezier(.23,1,.32,1);
    transition: transform 0.3s cubic-bezier(.23,1,.32,1), background-color 0.3s cubic-bezier(.23,1,.32,1);
    
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

.e-add-tabs-style-fillup > nav ul li.tab-current a::after {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

/* .e-add-tabs-style-fillup > nav ul li a .e-add-tab-title,
.e-add-tabs-style-fillup .e-add-tab-icon {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transform: translate3d(0,5px,0);
    transform: translate3d(0,5px,0);
} */

/* .e-add-tabs-style-fillup nav ul li a .e-add-tab-title {
    display: block;
    font-weight: 700;
    font-size: 0.7em;
} */
/*
.e-add-tabs-style-fillup .e-add-tab-icon {
    display: block;
    margin: 20px 0 10px 0;
}
*/
.e-add-tabs-style-fillup .e-add-tab-icon, .e-add-tabs-style-fillup .e-add-tab-title svg {
	display: block;
	margin: 0 auto 10px;
}
.e-add-tabs-style-fillup .e-add-tab-icon, .e-add-tabs-style-fillup .e-add-tab-title svg {
	display: inline-block;
    margin: 10px;
}
/* .e-add-tabs-style-fillup > nav ul li.tab-current a .e-add-tab-title,
.e-add-tabs-style-fillup li.tab-current .e-add-tab-icon {
    -webkit-transform: translate3d(0,-0.1em,0);
    transform: translate3d(0,-0.1em,0);
} */


/*****************************/
/* Trapezoid, based on http://lea.verou.me/2013/10/slanted-tabs-with-css-3d-transforms/ */
/*****************************/

.e-add-tabs-style-tzoid {
    /* max-width: 1200px; */
}

.e-add-tabs-style-tzoid > nav {
    padding: 0;
    margin-bottom: -2px;
}

.e-add-tabs-style-tzoid > nav ul li {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.e-add-tabs-style-tzoid > nav ul li a {
    padding: 0.7em 1.5em 0.7em 0.3em;

    color: #000;
    

    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

@media screen and (max-width: 54em) {
    .e-add-tabs-style-tzoid > nav ul li a {
        padding: 0.7em 0.5em 0.7em 0.3em;
    }
}

/* .e-add-tabs-style-tzoid > nav ul li a:hover,
.e-add-tabs-style-tzoid > nav ul li a:focus {
    color: #e8e7e7;
} */

/* .e-add-tabs-style-tzoid > nav ul li.tab-current a,
.e-add-tabs-style-tzoid > nav ul li.tab-current a:hover {
    color: #FFF
} */

/* .e-add-tabs-style-tzoid > nav ul li a .e-add-tab-title {
    font-weight: 500;
    font-size: 0.75em;
} */

.e-add-tabs-style-tzoid > nav ul li a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    outline: 1px solid transparent;
    border-radius: 10px 10px 0 0;
    background-color: #f5f5f5;
   
    content: '';
    -webkit-transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
    transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
    
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.e-add-tabs-style-tzoid > nav ul li.tab-current a::after/*,
.e-add-tabs-style-tzoid .e-add-tab-content-wrap*/ {
    background: #000000;
    color: #FFF;
    box-shadow: none;
}

/*****************************/
/* Circle fill */
/*****************************/

.e-add-tabs-style-circlefill {
    max-width: 700px;
    /* border: 1px solid #000000; */
}

.e-add-tabs-style-circlefill > nav ul li {
    overflow: hidden;
    /* border-right: 1px solid #000000; */
}

.e-add-tabs-style-circlefill > nav li a {
    padding: 1.5em 0;
    color: #fff;
    font-size: 1em;
}

.e-add-tabs-style-circlefill > nav li:first-child {
    border-left: none;
}

.e-add-tabs-style-circlefill > nav li:last-child {
    border: none;
}

.e-add-tabs-style-circlefill > nav li::before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    width: 80px;
    height: 80px;
    border: 1px solid #000000;
    border-radius: 50%;
    background: #000000;
    content: '';
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(.42,0,.12,1);
    transition: transform 0.7s cubic-bezier(.42,0,.12,1);
}

.e-add-tabs-style-circlefill > nav li.tab-current::before {
    -webkit-transform: scale3d(6,6,1);
    transform: scale3d(6,6,1);
}

.e-add-tabs-style-circlefill > nav a {
    -webkit-transition: color 0.8s;
    transition: color 0.8s, fill 0.8s;
}

.e-add-tabs-style-circlefill > nav a .e-add-tab-label {
    display: none;
}

.e-add-tabs-style-circlefill > nav li.tab-current a {
    color: #fff;
}
.e-add-tabs-style-circlefill > nav li.tab-current a .e-add-tab-title svg{
    fill: #fff;
}

.e-add-tabs-style-circlefill .e-add-tab-icon {
    display: block;
    margin: 0;
    pointer-events: none;
}
/*
.e-add-tabs-style-circlefill .e-add-tab-content-wrap {
         border-top: 1px solid #000000;
}
*/


/* ------------ PLACEHOLDER ---------- */
.e-add-tab-content-wrap .e-add-placeholder-style{
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    overflow: hidden;

    /* -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d; */

    display: flex;
    justify-content: center;
    align-items: center;
}
.e-add-tab-content-wrap .e-add-placeholder-style:nth-child(odd){
    background-color: #ccc;
}
.e-add-tab-content-wrap .e-add-placeholder-style:nth-child(even){
    background-color: #999;
}
.e-add-tab-content-wrap .e-add-placeholder-content{
    font-size: 2em;
    font-weight: 900;
}
.e-add-tab-content-wrap .e-add-tab-content-element.e-add-placeholder-style.content-current {
    display: flex;
}

