.wrap {
  width: 1155px;
  margin: 0 auto;
}
.bc__heading {
  display: flex;
  padding: 10px 0 25px 0;
}
.bc__heading--name {
  flex: 0 0 50% ;
  font-family: "BitterRegular";
  font-size: 16px;
  color: #55750C;
}

.bc__heading--agreement {
  flex: 0 0 50% ;
  text-align: right;
  font-size: 12px;
  color: #1E73C2;
}

.bc__panel {
  display: flex;
  flex-direction: column;
  border: 1px solid #797d80;
}

.bc__panel--heading {
  display: flex;
  padding: 8px 12px;
  background-color: #797d80;
  font-family: verdana;
  font-size: 16px;
  font-weight: 700;
}
.bc__panel--heading--name {
  flex: 0 0 60% ;
  color: #fff;
}
.bc__panel--heading--small {
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
}

.bc__panel--heading--agreement {
  flex: 0 0 40% ;
  color: #fff;
  text-align: right;

}


.bc__panel--body {
  display: flex;
  box-sizing: border-box;
  padding: 10px 15px;
}
.bc__panel--body--tabs {
  flex: 0 0 290px ;
}
.bc__panel--body--tab {
  display: block;
  font-family: verdana;
  font-weight: bold;
  font-size: 11.5px;

  color: #6B6476;
  border: 1px solid #EBE8DF;
  margin: 0 0 1px 0;
  padding: 12px ;

  background-color: #f0f0f0;
  background-position: 95% 50%;
  background-repeat: no-repeat;

  transition: all .1s linear ;
}
.bc__panel--body--tab:hover, .bc__panel--body--tab.active {
  cursor: pointer;
  background-color: #087c8a;
  color: #fff;
  text-decoration: none ;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAANCAMAAABSF4SHAAAABlBMVEX///////9VfPVsAAAAAXRSTlMAQObYZgAAACNJREFUCNdjYGSAAEZGGM0IoxlhNCOMZoTRjKh8VPWo5kEoAAqUADKzEl53AAAAAElFTkSuQmCC);


}


.bc__panel--body--content {
  flex: 1;
  box-sizing: border-box;
  padding-left: 10px;
}

.bc__panel--body--content--block {
  padding: 10px ;
  margin-bottom: 10px;
  background-color: #f0f0f0;
}



.bc__edit--line {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.bc__edit--line--left {
  flex: 0 0 250px ;
  text-align: right;

  font-family: verdana;
  font-size: 12px;
  font-weight: 400;
  color: #087c8a;
  padding-right: 30px ;
  box-sizing: border-box;
}
.bc__edit--line--right {
  flex: 1 ;

}

.bc__edit--input:disabled {
  font-size: 12px;
  font-weight: bold;
  color: #696D6F;
  line-height: 1.2;
  font-family: verdana, arial, tahoma;
  border: none;
  background: transparent;
  width: 100%;
}

.bc__edit--input {
  font-size: 12px;
  font-weight: bold;
  color: #696D6F;
  height: 30px;
  padding: 0 10px;
  font-family: verdana;
  line-height: 1;
  border: 1px solid #087c8a;
  width: 100%;
  box-sizing: border-box;
}



.bc__edit--input.sh {
  width: 40%;
}
.bc__edit--input.lg {
  width: 80%;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}


.bc__edit--submit {
  min-width: 105px;
  border: 1px solid;
  border-top-color: #2d8499;
  border-right-color: #2d8499;
  border-bottom-color: #226170;
  border-left-color: #226170;
  background-color: #087c8a;
  cursor: pointer;
  font-family: verdana;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 26px;
  text-decoration: none;
  transition: width .3s linear;
  position: relative;
}
.bc__edit--submit.loading {
  padding-left: 46px;
}
.bc__edit--submit.loading:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  animation: spinner 1s linear infinite;
}


.bc__edit--submit.success {
  font-size: 0;
  height: 28px;
}
.bc__edit--submit.success::after {
  font-size: 13px;
  content: "Сохранено";
}

