/* Accordion / FAQ iCreate Styling */
.icrtAccordion, .icrtFaq, .icrtHowto {
	width: 100%;
	border-collapse: collapse;
}
.icrtAccordion > tbody > tr:nth-child(odd), .icrtFaq > tbody > tr:nth-child(odd), .icrtHowto > tbody > tr:nth-child(odd) {
	background-color: #FFF;
}
.icrtAccordion > tbody > tr:nth-child(odd) > td, .icrtFaq > tbody > tr:nth-child(odd) > td, .icrtHowto > tbody > tr:nth-child(odd) > td {  /* TRIGGER  */
	height: 40px;
	vertical-align: middle;
	padding: 0 60px 0 8px;
	font-weight: bold;
	position: relative;
}
#uber.preview-edit-mode .icrtAccordion > tbody > tr:nth-child(odd) > td:after, #uber.preview-edit-mode .icrtFaq > tbody > tr:nth-child(odd) > td:after {
	content: 'Accordion';
	position: absolute;
    top: 3px;
    right: 3px;
    font-size: 12px;
    color: #666;
}
.icrtAccordion > tbody > tr:nth-child(odd) > td > *, .icrtFaq > tbody > tr:nth-child(odd) > td > *, .icrtHowto > tbody > tr:nth-child(odd) > td > *  {
	margin: 0;
	padding: 0;
}
.icrtAccordion > tbody > tr:nth-child(even), .icrtFaq > tbody > tr:nth-child(even), .icrtHowto > tbody > tr:nth-child(even) {
	background-color: #EFEFEF;
}
.icrtAccordion > tbody > tr:nth-child(even) > td, .icrtFaq > tbody > tr:nth-child(even) > td, .icrtHowto > tbody > tr:nth-child(even) > td {
	padding: 10px;
}
.icrtAccordion > tbody > tr > td, .icrtFaq > tbody > tr > td, .icrtHowto > tbody > tr > td {
	border: solid 1px #ccc;
	padding: 5px;
}

/* FAQ Full Text Specific iCreate Styling */
#uber.preview-edit-mode .icrtFaq.icrtFaq-full > tbody > tr:nth-child(even) {
	background-color: #f8f8f8;
}
#uber.preview-edit-mode .icrtFaq.icrtFaq-full > tbody > tr > td {
	border: dashed 1px #ddd;
}
#uber.preview-edit-mode .icrtFaq.icrtFaq-full > tbody > tr:nth-child(odd) > td:after {
	content: 'FAQ Full';
}

/* FAQ Accordion Specific iCreate Styling */
#uber.preview-edit-mode .icrtFaq.icrtFaq-accordion > tbody > tr:nth-child(odd) > td:after {
	content: 'FAQ';
}

/* HOW TO Specific iCreate Styling */
#uber.preview-edit-mode .icrtHowto {
	position: relative;
	counter-reset: step;
}
/* #uber.preview-edit-mode .icrtHowto:after {
	content: 'How To';
	position: absolute;
	top: -29px;
	right: 0;
	font-size: 12px;
	font-weight: bold;
	color: #bbb;
	border: 1px solid #eee;
	border-bottom: 0;
	padding: 5px 8px;
} */
#uber.preview-edit-mode .icrtHowto > tbody > tr > td {
	position: relative;
	font-weight: normal;
}
#uber.preview-edit-mode .icrtHowto > tbody > tr > td:after {
    content: attr(data-name);
    position: absolute;
    top: 3px;
    right: 3px;
	font-size: 12px;
	font-weight: normal;
    color: #666;
}
#uber.preview-edit-mode .icrtHowto > tbody > tr:nth-child(1) > td {
	font-size: 18px;
	font-weight: bold;
}

#uber.preview-edit-mode .icrtHowto > tbody > tr:not(.numberOfStepsRow) > td {
	padding: 7px 95px 7px 8px;
	background-color: #fff;
}
#uber.preview-edit-mode .icrtHowto > tbody > tr.numberOfStepsRow [data-name~="Step"][data-name~="Name"] {
	position: relative;
	padding-left: 45px
}
#uber.preview-edit-mode .icrtHowto > tbody > tr.numberOfStepsRow [data-name~="Step"][data-name~="Name"]:before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: 6px;
	left: 10px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	background-color: #444;
	border: none;
	width: 28px;
	height: 28px;
	border-radius: 28px;
	margin-right: 5px;
}
#uber.preview-edit-mode .icrtHowto > tbody > tr.numberOfStepsRow > td:after {
	display: none;
}

/*======================================================
  6. ACCORDIONS
  ===================================================== */

.Accordion {
    margin-bottom: 5px;
}

.AccordionTrigger {
    display: block;
    padding: 8px;
    overflow:hidden;
    padding-right: 60px;
    position: relative;
    border: solid 1px #999;
    font-family: 'verbbold', "helvetica neue", Helvetica, Arial, sans-serif;  
    background: #fff url(../images/structure/Accordion-open.png) 99% center no-repeat;
    -webkit-box-shadow: 0 3px 3px #999; 
    -moz-box-shadow: 0 3px 3px #999;
    box-shadow: 0 2px 3px #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .AccordionTrigger:hover,
    .AccordionTrigger:focus
    {
        background-color: #f7f7f7;   
        text-decoration: none;
        cursor: pointer;
    }

    .AccordionTrigger:active {
        background-color: #f7f7f7;   
        text-decoration: none;
        cursor: pointer;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;   
    }
    .AccordionTrigger.open {
        border: solid 1px #ccc;
        background: #fff url(../images/structure/Accordion-close.png) 99% center no-repeat;
        -webkit-border-radius: 3px 3px 0 0;
        -moz-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0; 
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;   
    }
.AccordionContent {
    padding: 10px;
    border: solid 1px #ccc;
    border-top: none;
    overflow:hidden;
    display: none;
    background: #e6eff6;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.icFaq-full .AccordionContent{
    display: block !important;
    padding: 0 0 20px;
    border: 0;
    background: transparent;
}

.icFaq-full :after {
    display: none;
}

.accordionButtons {
    margin-bottom: 1rem;
}

.accordionButtons .accordionBtn {
    display: inline-block;
    position: relative;
    padding: 0 0 0 28px;
    font-weight: bold;
    color: #16678a;
    background-color: #fff;
    border-radius: 5px;
    border: none;
    overflow: hidden;
    appearance: none;
}

    .accordionButtons .accordionBtn::before, .accordionButtons .accordionBtn::after {
        width: 24px;
        height: 24px;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        transition: all 0.25s ease-out;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 14px 14px;
    }

    .accordionButtons .accordionBtn:active, .accordionButtons .accordionBtn:focus, .accordionButtons .accordionBtn:hover {
        cursor: pointer;
    }

.accordionButtons :not(.open)::after {
    background-image: url(../images/structure/accordion-expand.svg);
}

.accordionButtons .open::after {
    background-image: url(../images/structure/accordion-collapse.svg);
}

.icHowto {
    opacity: 0;
    margin-bottom: 80px;
    position: relative;
    counter-reset: step;
    font-size: 14px;
}

    .icHowto:after {
        content: '';
        position: absolute;
        bottom: -22px;
        left: 2px;
        width: 28px;
        height: 3px;
        background-color: #000;
    }

.loaded .icHowto {
    animation: fadeIn 700ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(0, 10px);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.icHowto > h2 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: bold;
}

    .icHowto > h2 a {
        font-size: inherit;
        font-weight: inherit;
        text-decoration: underline;
    }

.icHowto > div:nth-child(2) {
    font-size: inherit;
    margin-bottom: 15px;
}

    .icHowto > div:nth-child(2) a {
        font-size: inherit;
        text-decoration: underline;
    }

.icHowto .totalTimeRow {
    font-size: inherit;
}

    .icHowto .totalTimeRow:before {
        content: 'Total time: ';
        font-weight: bold;
    }

.icHowto .toolsResourcesRow {
    font-size: inherit;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

    .icHowto .toolsResourcesRow:before {
        content: 'Tools/resources: ';
        font-weight: bold;
    }

.icHowto .stepRow {
    display: list-item;
    list-style-type: none;
    position: relative;
    margin-left: 50px;
}

.icHowto .stepRow:before {
    counter-increment: step;
    content: counter(step);
    content: counter(step) / "";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    top: 2px;
    left: -50px;
    width: 32px;
    height: 32px;
    border: 3px solid #000;
    border-radius: 32px;
	box-sizing: border-box;
}

.icHowto .stepRow > div:nth-child(1):before, .icHowto .stepRow div:nth-child(2):before {
    content: '';
    position: absolute;
    top: 32px;
    left: -35px;
    width: 3px;
    height: calc(100% - 10px);
    background-color: #000;
}

.icHowto .stepRow > div:nth-child(1) {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: bold;
}

    .icHowto .stepRow > div:nth-child(1) a {
        font-size: inherit;
        font-weight: inherit;
        text-decoration: underline;
    }

.icHowto .stepRow > div:nth-child(2) {
    padding-bottom: 22px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ccc;
}

.icHowto .stepRow:last-child > div:nth-child(2) {
    padding-bottom: 5px;
    margin-bottom: 0;
    border-bottom: 0;
}



/* Nested Accordion */

.AccordionContent .AccordionContent {
    background: #fff !important;
}


p.ic-EmptyContent { 
    display:none;
}

.AccordionTrigger h1, .AccordionTrigger h2, .AccordionTrigger h3, .AccordionTrigger h4, .AccordionTrigger h5, .AccordionTrigger h6, .AccordionTrigger p {
    font-size: 15px !important;
    line-height: 1.5 !important;
    font-weight: normal !important;
    margin: 0 !important;
}
