/*
Description: cf7m-default
Default Contact Form 7 Multi Styling - provides base styling for all CF7 Skins Multi Forms
Author: Neil Murray
Author URI: cf7skins.com
Version: 0.04
*/

/* Multi Fixes */
.wpcf7 .cf7multi {  /* Check when cf7m-default is enqueued */
	padding: 0;
	border: none;
	background: #fff;
}

.wpcf7 .cf7multi .etabs li {
	margin-bottom: 0;
}

/* Multi Tabs */
.cf7multi .tab-container {
}

.cf7multi .etabs { ../* Check if this is still used - NM */
	margin: 0;
	padding: 0;
}

.cf7multi .tab {
	display: inline-block;
	border: solid 1px #ccc;
	border-bottom: none;
	border-radius: 4px 4px 0 0 ;
	background: #eee;
}

html:not([dir=rtl]) .cf7multi .tab {
	margin-left: 0;
	margin-right: .25em;
}

html[dir=rtl] .cf7multi .tab {
	margin-right: 0;
	margin-left: .25em;
}

.cf7multi .tab a {
	line-height: 2em;
	display: block;
	padding: 5px 10px;
	text-decoration: none;
	outline: none;
}

.cf7multi .tab.active {
	position: relative;
	top: 1px;
	padding-top: 6px;
	border-color: #ccc;
	background: #fff;
}

.cf7multi .tab a.active {
	font-weight: bold;
}

/* Panels */
.cf7multi .epanels { ../* Check if this is still used - NM */
	border: solid #ccc 1px;
	border-radius: 0 4px 4px 4px;
}

.cf7multi .panel-container {
	padding: 10px 20px;
	outline: none;
	height: 0;
	opacity: 0;
	visibility: hidden;
}

.cf7multi .panel-container.active { /* fixed hidden panel */
	visibility: visible;   /* WAS visibility: visible !important; */
	height:auto;
	-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* Navigation & Pagination */
.cf7multi .navigation {
	min-height: 1em;
	margin-top: 1em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cf7multi .pagination {
	display: block;
	margin-top: 1em;
	text-align: center;
}

.wpcf7 .cf7multi .navigation .previous,
.wpcf7 .cf7multi .navigation .next {
	cursor: pointer;
	line-height: normal;
	padding: 5px 10px;
}

html:not([dir=rtl]) .cf7multi .navigation .previous { float: left }
html[dir=rtl] .cf7multi .navigation .previous { float: right }

html:not([dir=rtl]) .cf7multi .navigation .next { float: right }
html[dir=rtl] .cf7multi .navigation .next { float: left }

/* Start & End Tabs */
.cf7multi .navigation .start{
	float: left;
}

.cf7multi .navigation .end {
	float: right;
}

/* Progress Bar */
.cf7multi .cf7m-progress {
	width: 100%;
	height: 30px;
	margin-bottom: .5em;
	border: solid 1px #ccc;
	border-radius: 4px;
	background: #f7f7f7;
}

.cf7multi .cf7m-progress div {
	width: 0;
	min-width: 1%;
	height: 28px;
	background: #d7d7d7;
	transition: width 0.3s ease;
}

/* Thank You Tab */
.cf7multi .epanels.thanks {  /* Change class to "cf7m-thanks" ? */
	border-radius: 4px;
}

.cf7m-thanks .wpcf7-mail-sent-ok {
	/*display: none; */
}

/* ADD Description - NM */
@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
	opacity: 1;
	}
}
