textarea::placeholder {
    color: black;
}

textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: black;
}
textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: black;
    opacity: 1;
}
textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: black;
    opacity: 1;
}
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: black;
}
textarea:placeholder-shown { /* Standard Pseudo-class */
    color: black;
}

textarea {
    height: 150px;
}


.cms-speaker-picture {
    margin-right: auto;
    margin-left: auto;
}

.cms-speaker-picture-box {
    display: flex;
    flex-direction: column;
}

.cms-speaker-form {
    margin-top: 2rem;
}

.cms-speaker-input-file-wrapper {
    position: relative;
    width: 150px;
    margin: 20px auto;
    padding: 10px 12px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    background-color: #1e88e5;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
    overflow: hidden;
}

.cms-speaker-input-file-wrapper:active {
    background-color: #64b5f6 ;
}

input[type="file"] {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0px;
    bottom: 0px;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    opacity: 0;
    z-index: 1;
}

@media screen and (max-width: 992px) {

    .cms-speaker-picture {
        width: 50%;
        height: 50%;
        margin-right: auto;
        margin-left: auto;
    }
    .cms-speaker-identity {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 992px) {
    .cms-speaker-picture {
        width: 80%;
        height: 80%;
    }
}