@charset "utf-8";
/* CSS Document */
/* .preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
} */

@-webkit-keyframes showTabs {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes showTabs {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.tabsy > button {
  width: 100%;
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
}
.tabsy > .tabButton {
  display: flex;
  /*background: #232323;*/
  color: #f5f5f5;
  text-align: left;
  font-size: 12px;
}
.tabsy > input {
  display: none;
}
.tabsy > input:checked + label + .tab {
  display: block;
}
.tabs > input:checked + label + .tab > .content {
  -webkit-animation: showTabs 250ms ease-in-out;
  animation: showTabs 250ms ease-in-out;
  padding-top: 60px;
}
.tabsy > .tab {
  background: #fff;
  display: none;
}

.breadcrumb1 {
  /* display: inline-block; */
  /* float: left; */
  position: relative;
  /*margin-top: 0.25em;*/
  margin-right: 36px;
  /*margin-bottom: 0.25em;*/
  padding: 11.55px 27px 10px 10px;
  background-color: #232323;
  color: gray;
  white-space: nowrap;
}

.breadcrumb1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  border-width: 23px 16px 23px 16px;
  border-style: solid;
  border-color: transparent transparent transparent #232323;
}
.breadcrumb1 + .breadcrumb1 {
  margin-left: 0.75em;
}
.breadcrumb1:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  border-width: 23px 16px 23px 16px;
  border-style: solid;
  border-color: #232323 #232323 #232323 transparent;

  bottom: 0;
  top: 0;
}

.breadcrumb1-first:before {
  border-width: 0px !important;
}
.breadcrumb1-first {
  padding: 11.55px 30px 10px 30px;
}

/*------------------tabs---------------------*/

.tabs {
  display: flex;
  flex-wrap: wrap;
  /*height: 300px;
  width: 500px;*/
  max-width: 1020px;
  margin: 0 auto;
}

.tabs label {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /*padding: 1rem 2rem;*/
  margin-right: 36px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.tabs .tab {
  order: 9;
  /*flex-grow: 1;*/
  width: 970px;
  display: none;
  padding: 20px 0px;
  margin: 0 auto;
}

.tabs input[type="radio"] {
  display: none;
}

.tabs input[type="radio"]:checked + label {
  border-color: #fd8204 #fd8204 #fd8204 transparent;
  background: #fd8204;
}
.tabs input[type="radio"]:checked + label::before {
  border-color: #fd8204 #fd8204 #fd8204 transparent;
}
input:checked + label {
  border-color: transparent transparent transparent #fd8204;
}
input:checked + label::after {
  border-color: transparent transparent transparent #fd8204;
}

.tabs input[type="radio"]:checked + label + .tab {
  display: block;
}
