.simple-field::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #c5c5c5;
}

.simple-field::-moz-placeholder {
  /* Firefox 19+ */
  color: #c5c5c5;
}

.simple-field:-ms-input-placeholder {
  /* IE 10+ */
  color: #c5c5c5;
}

.simple-field:-moz-placeholder {
  /* Firefox 18- */
  color: #c5c5c5;
}

.ng-valid[required],
.ng-valid.required {
  border-left: 5px solid #42a948;
  /* green */
}

.ng-invalid:not(form) {
  border-left: 5px solid #a94442;
  /* red */
}

.create-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.11);

  /* -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;

  -ms-flex-preferred-size: 0;
  flex-basis: 0; */
}

.forms-container {
  padding: 30px 34px 20px 34px;

  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.forms-container.width-custom-scrollBar {
  padding: 30px 5px 20px 40px;
}

.controls-form-container {
  width: 100%;
}

.controls-form-container .panel {
  max-width: 800px;
}

.controls-form-container .panel.full-size {
  max-width: none;
  padding-right: 36px;
}

.panel {
  display: none;
}

.control-group {
  margin-bottom: 24px;
}

.control-group.parent-group {
  margin-bottom: 14px;
}

.child-group {
  padding-left: 30px;
}

.second-child-group {
  padding-left: 20px;
}

.title-group {
  font-family: "montserratbold";
  color: #333333;
  font-size: 16px;
  margin-bottom: 16px;
}

.child-group .title-group {
  font-size: 15px;
}

.control-group .control-lbl {
  font-family: "montserratbold";
  color: #333333;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.optional-txt {
  font-family: "montserratbold";
  color: #549ca1;
  font-size: 11px;
}

.txt-grey {
  color: #a0a0a0;
}

.control-group .control-field {
  min-height: 48px;
}

.control-group .control-field .simple-field {
  font-size: 14px;
  color: #5c5c5c;
  background-color: #fff;
  height: 48px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #e7ebef;
  width: 100%;
  padding-left: 20px;
}

.control-group .control-field .simple-field[type="file"] {
  padding-top: 9px;
}

.control-group .control-field.forgotten-control {
  position: relative;
}

.control-group .control-field.forgotten-control .simple-field {
  border: 2px solid #ffdaaf;
  animation: Amhere 2s infinite;
}

.control-group .control-field.forgotten-control:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/assets/img/forgotten-alertIcn@2x.png") no-repeat 50% 50% transparent;
  background-size: 16px;
  position: absolute;
  margin-left: -30px;
  top: 14px;
  animation: AmhereIcn 2s infinite;
}

.control-group .control-field.datepicker-field.forgotten-control:after {
  display: none;
}

.control-group .control-field>label.forgotten-control:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background: url("/assets/img/forgotten-alertIcn@2x.png") no-repeat 50% 50% transparent;
  background-size: 16px;
  margin-left: 0;
  animation: AmhereIcn 2s infinite;
}

@keyframes Amhere {
  0% {
    border-color: #f9e5cd;
  }

  50% {
    border-color: #ffb45b;
  }

  100% {
    border-color: #f9e5cd;
  }
}

@keyframes AmhereIcn {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

.control-group .control-field .simple-field.datepickerField {
  background: url("/assets/img/calendar-icn@2x.png") no-repeat 100% 50% #fff;
  background-size: 31px;
}

.control-group .control-field .simple-field[readonly] {
  font-family: "montserratbold";
  color: #c5c5c5;
  background-color: #f8f8f8;
}

.control-group .control-field textarea.simple-field {
  resize: vertical;
  height: 100px;
  padding-top: 12px;
}

.control-group .control-field .simple-field.small-size {
  max-width: 184px;
}

.control-group .control-field .simple-field.medium-size {
  max-width: 490px;
}

.control-group .control-field .check-field {
  display: none;
}

.control-group .control-field>label {
  margin-right: 50px;
  cursor: pointer;
}

.control-group .control-field>label.one-per-line {
  width: 100%;
  margin-right: 0;
}

.control-group .control-field>label:last-child {
  margin-right: 0;
}

.control-group .control-field .check-field[type="radio"]+.check-mask {
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid #6b6b6b;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.control-group .control-field .check-field[type="radio"]+.check-mask:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  background: #6b6b6b;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.control-group .control-field .check-field[type="radio"]:checked+.check-mask {
  border-color: #F29C6B;
}

.control-group .control-field .check-field[type="radio"]:checked+.check-mask:after {
  background-color: #F29C6B;
  width: 8px;
  height: 8px;
  left: 2px;
  top: 2px;
}

.control-group .control-field .check-field[type="checkbox"]+.check-mask {
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 2px solid #e7edf3;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.control-group .control-field .check-field[type="checkbox"]+.check-mask:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  background: url("/assets/img/check-valid@2x.png") no-repeat 50% 50% #6b6b6b;
  background-size: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.control-group .control-field .check-field[type="checkbox"]:checked+.check-mask {
  border-color: #b05278;
}

.control-group .control-field .check-field[type="checkbox"]:checked+.check-mask:after {
  background-color: #b05278;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.control-group .control-field .check-lbl {
  font-family: "montserratbold";
  font-size: 14px;
  color: #5c5c5c;
  vertical-align: middle;
}

fieldset input.simple-field {
  box-sizing: border-box;
}

/*Buttons*/
.btn-icn {
  border: none;
  cursor: pointer;
  padding: 0px 16px 4px 16px;
  border-radius: 15px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.11);
  background-color: #ffffff;
  vertical-align: middle;
}

.btn-icn+.btn-icn {
  margin-left: 24px;
}

.btn-icn img {
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
}

.btn-icn span {
  font-family: "montserratmedium";
  font-size: 14px;
  color: #5a5a5a;
  vertical-align: middle;
}

.btn-rounded {
  font-size: 14px;
  color: #fff;
  padding: 5px 14px;
  min-height: 46px;
  border: none;
  background-color: #C4333D;
  cursor: pointer;
  vertical-align: middle;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn-rounded:not([disabled]):hover {
  background-color: #C4333D;
}

.btn-rounded[disabled] {
  background-color: #C4333D;
  opacity: 0.5;
}

.btn-rounded.small-btn {
  min-height: 30px;
}

.btn-rounded.btn-yellow {
  background-color: #F29C6B;
}

.btn-rounded.btn-yellow:hover {
  background-color: #F29C6B;
}

.btn-rounded.btn-green {
  background-color: #C4333D ;
}

.btn-rounded.btn-green:hover {
  background-color: #C4333D ;
}

.btn-rounded.btn-red {
  background-color: #C4333D;
}

.btn-rounded.btn-red:hover {
  background-color: #C4333D ;
}


.btn-rounded.btn-gray {
  background-color: #bbbbbb;
}

.btn-rounded.btn-gray:hover {
  background-color: #6e6e6e;
}

.btn-rounded.btn-cancel {
  color: #a3a3a3;
  background-color: #e5e5e5;
}

.btn-rounded.btn-cancel:hover {
  background-color: #cecdcd;
}

.btn-rounded.with-icn {
  text-align: left;
}

.btn-rounded.with-icn img {
  margin-right: 10px;
  vertical-align: middle;
}

.btn-rounded.with-icn span {
  vertical-align: middle;
}

.is-error {
  font-size: 12px;
  color: #ff6d66;
  margin-top: 4px;
}

.is-error img {
  vertical-align: middle;
  margin-right: 5px;
}

.is-error span {
  vertical-align: middle;
}

/* .benef_card > p{
  margin-bottom: 10px;
}
.actions-statut-hold{
  text-align: right;
}
.actions-statut-hold button{
  margin-left: 10px;
} */

.simple-btn {
  font-family: "montserratmedium";
  font-size: 14px;
  color: #F29C6B;
  background: transparent;
  border: none;
  cursor: pointer;
}

.simple-btn span {
  vertical-align: middle;
}

.simple-btn img {
  margin-right: 13px;
  vertical-align: middle;
}

.ng-invalid:not(form) {
  border-left: none;
}

.disabled {
  opacity: 0.4;
  pointer-events: none;
}


.btn-rounded-reject {
  font-size: 14px;
  color: #213A38;
  padding: 5px 14px;
  border: solid 1px #C4333D;
  background-color: #Ffffff;
  cursor: pointer;
  vertical-align: middle;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

