/*
    Common 
*/
.wizard {
  background-color: #fff;
}

.wizard,
.tabcontrol {
  display: block;
  width: 100%;
  overflow: hidden;
}

.wizard a,
.tabcontrol a {
  outline: 0;
}

.wizard ul,
.tabcontrol ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.wizard ul > li,
.tabcontrol ul > li {
  display: block;
  padding: 0;
}

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info {
  position: absolute;
  left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title {
  position: absolute;
  left: -999em;
}

/*
    Wizard
*/
.wizard > .steps {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
}

.wizard.vertical > .steps {
  display: inline;
  float: left;
  width: 30%;
}

.wizard > .steps > ul > li {
  display: table-cell;
  width: 1%;
  position: relative;
  line-height: 48px;
  margin: 0;
  text-align: center;
}

.wizard > .steps > ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  border: 24px solid transparent;
  z-index: 1;
  border-right: 0;
  right: -15px;
  border-left: 14px solid rgba(0, 0, 0, 0.2);
}

.wizard > .steps > ul > li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  border: 24px solid transparent;
  z-index: 1;
  border-right: 0;
  right: -14px;
  border-left: 14px solid #fff;
}

.wizard > .steps > ul > li.current:before {
  right: -14px;
  border-left: 14px solid;
}

.wizard > .steps > ul > li.current:after {
  right: -14px;
  border-left: 14px solid;
}

.wizard > .steps > ul > li.done:before {
  right: -14px;
  border-left: 14px solid #3C763D;
}

.wizard > .steps > ul > li.done:after {
  right: -13px;
  border-left: 14px solid #EEF9EA;
}

.wizard > .steps > ul > li.error:before {
  right: -14px;
  border-left: 14px solid;
  border-left-color: #A94442 !important;
}

.wizard > .steps > ul > li.error:after {
  right: -13px;
  border-left: 14px solid;
  border-left-color: #F9F0F0 !important;
}

.wizard > .steps > ul > li a:after {
  content: "";
  font: normal normal normal 24px/1 MaterialDesignIcons;
  position: absolute;
  margin-left: 6px;
  line-height: inherit;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.wizard > .steps > ul > li:last-child:after {
  display: none;
}

.wizard.vertical > .steps > ul > li {
  float: none;
  width: 100%;
}

.wizard > .steps a {
  display: block;
  font-size: 17px;
  width: auto;
  height: 48px;
  color: #757575;
  overflow: hidden;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active {
  cursor: default;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
  color: rgba(255, 255, 255, 0.8);
  cursor: default;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active {
  background-color: #EEF9EA !important;
  color: #3C763D !important;
}

.wizard > .steps .done a:after,
.wizard > .steps .done a:hover:after,
.wizard > .steps .done a:active:after {
   content: '\e5ca';
   font-family: 'Material Icons';
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active {
  background-color: #F9F0F0 !important;
  color: #A94442 !important;
}

.wizard > .steps .error a:after,
.wizard > .steps .error a:hover:after,
.wizard > .steps .error a:active:after {
  content: "\e001";
  font-family: 'Material Icons';
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.wizard > .content {
  display: block;
  overflow: hidden;
  position: relative;
  width: auto;
}

.wizard.vertical > .content {
  display: inline;
  float: left;
  margin: 0 2.5% 0.5em 2.5%;
  width: 65%;
}

/* .wizard > .content > .body {
  float: left;
  position: relative;
  width: 95%;
  height: 95%;
  padding: 2.5%;
} */

.wizard > .content > .body {
	border:none !important;
}

.wizard > .content > .body ul {
  list-style: disc !important;
}

.wizard > .content > .body ul > li {
  display: list-item;
}

.wizard > .content > .body > iframe {
  border: 0 none;
  width: 100%;
  height: 100%;
}

.wizard > .content .clearable-btn {
  top: 9px !important;
}

.wizard > .content > .body label {
  display: inline-block;
  margin-bottom: 0.5em;
}

.wizard > .content > .body label.error {
  color: #8a1f11;
  display: inline-block;
  margin-left: 1.5em;
}

.wizard > .actions {
  position: relative;
  display: block;
  text-align: right;
  width: 100%;
  background-color: #f5f5f6;
  padding: 14px 12px 4px;
}

.wizard.vertical > .actions {
  display: inline;
  float: right;
  margin: 0 2.5%;
  width: 95%;
}

.wizard > .actions > ul {
  display: inline-block;
  text-align: right;
}

.wizard > .actions > ul > li {
  margin: 0 0.5em;
  float: left;
}

.wizard.vertical > .actions > ul > li {
  margin: 0 0 0 1em;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  display: inline-block;
  margin-bottom: 0;
  line-height: 34px;
  background-image: none;
  padding: 0 18px;
  letter-spacing: .5px;
  border-radius: 2px;
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.wizard > .actions a:hover,
.wizard > .actions a:hover:hover,
.wizard > .actions a:active:hover {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active {
  background: #eee;
  color: #aaa;
  cursor: default;
  box-shadow: none;
}

/*
    Tabcontrol
*/
.tabcontrol > .steps {
  position: relative;
  display: block;
  width: 100%;
}

.tabcontrol > .steps > ul {
  position: relative;
  margin: 6px 0 0 0;
  top: 1px;
  z-index: 1;
}

.tabcontrol > .steps > ul > li {
  float: left;
  margin: 5px 2px 0 0;
  padding: 1px;
}

.tabcontrol > .steps > ul > li:hover {
  background: #edecec;
  border: 1px solid #bbb;
  padding: 0;
}

.tabcontrol > .steps > ul > li.current {
  background: #fff;
  border: 1px solid #bbb;
  border-bottom: 0 none;
  padding: 0 0 1px 0;
  margin-top: 0;
}

.tabcontrol > .steps > ul > li > a {
  color: #5f5f5f;
  display: inline-block;
  border: 0 none;
  margin: 0;
  padding: 10px 30px;
  text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover {
  text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a {
  padding: 15px 30px 10px 30px;
}

.tabcontrol > .content {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 35em;
  overflow: hidden;
  border-top: 1px solid #bbb;
  padding-top: 20px;
}

.tabcontrol > .content > .body {
  float: left;
  position: absolute;
  width: 95%;
  height: 95%;
  padding: 2.5%;
}

.tabcontrol > .content > .body ul {
  list-style: disc !important;
}

.tabcontrol > .content > .body ul > li {
  display: list-item;
}

@media only screen and (max-width: 480px) {
  .wizard > .steps a:after {
    display: none;
  }
}

.dark-skin .wizard > .actions {
  background-color: #262733;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-skin .wizard > .steps > ul > li.disabled:after {
  border-left-color: #262733;
}

.dark-skin .wizard > .steps li:not(.current) a {
  color: #A9B1B3;
}