.ck-editor__editable {
    min-height: 200px;
}

.imgcheck {
    display: none;
}
/*
- Style each label that is directly after the input
- position: relative; will ensure that any position: absolute children will position themselves in relation to it
*/

.imgcheck + label {
    position: relative;

    margin: 4px;
    background: no-repeat;
    background-size: auto 100px;
    height: 90px;
    width: 90px;
    /*display: block;*/
    border-radius: 10%;
    transition: box-shadow 0.4s, border 0.4s;
    border: solid 3px #cccccc;
    box-shadow: 0 0 1px #cccccc;/* Soften the jagged edge */
    cursor: pointer;
}
/* Provide a border when hovered and when the checkbox before it is checked */
/*input[type=checkbox]*/
.imgcheck + label:hover,
.imgcheck:checked + label {
    border: solid 3px #FF6000;
    box-shadow: 0 0 1px #FF6000;

    /* Soften the jagged edge */
}
/*
- Create a pseudo element :after when checked and provide a tick
- Center the content
*/

.imgcheck:checked + label:after {
    content: '\2714';
    /*content is required, though it can be empty - content: '';*/
    height: 1em;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    color: #F00;
    line-height: 1;
    font-size: 18px;
    text-align: center;
    background-size:cover;
    box-shadow:inset 6000px 0 0 6000px rgba(97,97,97, 0.5);
}

.filecheck {
    display: none;
}
/*
- Style each label that is directly after the input
- position: relative; will ensure that any position: absolute children will position themselves in relation to it
*/

.filecheck + label {
    background-color: #f1b85c;
    width: 100%;
}
/* Provide a border when hovered and when the checkbox before it is checked */
/*input[type=checkbox]*/
.filecheck + label:hover,
.filecheck:checked + label {
    border: solid 3px #FF6000;
    box-shadow: 0 0 1px #FF6000;

    /* Soften the jagged edge */
}
/*
- Create a pseudo element :after when checked and provide a tick
- Center the content
*/

.filecheck:checked + label:after {
    content: '\2714';
    /*content is required, though it can be empty - content: '';*/
    height: 1em;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    color: #F00;
    line-height: 1;
    font-size: 18px;
    text-align: center;
    background-size:cover;
    box-shadow:inset 6000px 0 0 6000px rgba(97,97,97, 0.5);
}
.custom--file-upload > span {
    margin-left: 2%;
}

.css-1d3bbye {
  float: left;
  padding: 1% 0;
  border-top: 1px solid #cccccc;
}

.css-1wxaqej {
  float: left;
  padding-right: 2%;
  width:20%
}

.css-2wxaqej {
  float: left;
  width: 80%;
}

.css-2d3bbye {
  width: 100%;
}

.css-25j76c0{
  width: 100%;
  clear: both;
  margin-top: 4%;
}
