.rtj-flex-container {
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: space-around;
    width: 100%;
}
.rtj-flex-container > div {
	flex: 1 1 50%;
}
.rtj-flex-container > div:first-child {
	margin-right: 15px;
}
.rtj-flex-container > div:last-child {
	margin-left: 15px;
}

.rtj-flex-container select+.form-item__label {
	display: block;
}

#consultation-entityform-edit-form .row .form-type-managed-file {
    font-size: 0.875rem;
    margin-bottom: 0;
}
.file-widget {
    width: 394px;
    display: inline-block;
}
.jq-file {
    width: 270px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.jq-file__name {
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 34px;
    padding: 0 80px 0 10px;
    border: 1px solid #CCC;
    border-bottom-color: #B3B3B3;
    border-radius: 4px;
    background: #FFF;
    box-shadow: inset 1px 1px #F1F1F1;
    font: 14px/32px Arial,sans-serif;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.jq-file__browse {
    position: absolute;
    top: 1px;
    right: 1px;
    padding: 0 10px;
    border-left: 1px solid #CCC;
    border-radius: 0 4px 4px 0;
    background: #F5F5F5;
    background: -webkit-linear-gradient(#FFF,#E6E6E6);
    background: linear-gradient(#FFF,#E6E6E6);
    box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
    font: 14px/32px Arial,sans-serif;
    color: #333;
    text-shadow: 1px 1px #FFF;
}
.jq-file input {
    height: auto;
    line-height: 1em;
    cursor: pointer;
}
.file_up {
	float: left;
    margin-top: 12px;
	margin-bottom: 8px;
}
.form-item.-js-content-plus {
	clear: both;
	margin-bottom: 8px;
}
.plus {
  --t:2px;   /* Thickness */
  --l:40px;  /* size of the symbol */
  --s:10px;  /* space around the symbol */
  --c1:#fff; /* Plus color*/
  --c2:#8ab446; /* background color*/

  display:inline-block;
  width:var(--l);
  height:var(--l);
  padding:var(--s);
  box-sizing:border-box; /*Remove this if you don't want space to be included in the size*/
  
  background:
    linear-gradient(var(--c1),var(--c1)) content-box,
    linear-gradient(var(--c1),var(--c1)) content-box,
    var(--c2);
  background-position:center;
  background-size: 100% var(--t),var(--t) 100%;
  background-repeat:no-repeat;
}

.radius {
  border-radius:50%;
}