.boxContainer{
    position: relative;
    overflow: hidden;
    border: 1px solid #DADCE0;
    height: 433px;
    border-radius: 4px;
}
.boxContainer.visible{
    overflow: auto;
}
.boxContainer.invalid{
    border-color: red;
}
.descriptionDiv{
    position: absolute;
    height: 430px;
    left: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    overflow: visible;
    padding: 15px;
    border-radius: 4px;
}
.descriptionDiv p {
    font-size: 16px;
    line-height: 150%;
    display: inline;
    white-space: pre-wrap;
    overflow-wrap: break-word; /* Newer syntax, better for modern browsers */
}
.boxContainer textarea{
    color: #fff;
    caret-color: #000;
    border: none;
    min-height: 100%;
    max-height: unset;
    padding: 15px;
    overflow: hidden;
    /* height: 400vh; */
    font-size: 16px;
    line-height: 150%;
    overflow-wrap: break-word;
    border-radius: 4px;
}
.boxContainer textarea.invalid{
    border: none;
}
#overflow_text{
    opacity: .7;
}
.limitExceedBox{
    padding: 10px 28px 10px 12px;
    background-color: rgb(255, 239, 239);
    display: none;
    margin-left: -24px;
    position: relative;
}
.limitExceedBox .upgradeText{
    font-size: 13px;
    line-height: 1.5;
}
.limitExceedBox .upgradeText a{
    color: #05ada3;
    text-decoration: underline;
    padding: 0;
    background: transparent;
    display: inline;
}
.limitExceedBox .upgradeText a:hover{
    text-decoration: none;
    padding: 0;
    background: transparent;
    color: #05ada3;
}
.limitExceedBox p:last-child{
    line-height: 1.43;
    color: rgb(251, 63, 75);
    font-size: 13px;
}
.limitExceedBox p:last-child span{
    font-weight: 600;
}
#description::selection{
    /* background-color: rgb(32, 192, 0);  */
    background-color: rgb(222, 247, 242); 
    color: #000; 
}
.limitExceedBoxAnchor{
    position: absolute;
    right: 5px;
    top: 5px;
}
.boxContainer br{
    display: block;
}
.boxContainer:hover {
    box-shadow: 0 0 6px -4px rgba(0, 0, 0, .5);
}
@media (max-width: 575px) {
    .descriptionDiv p{
        font-size: 14px;
    }
    .limitExceedBox{
        order: 2;
    }
    .boxContainer textarea{
        font-size: 14px;
    }
    .wordsCountMin{
        font-size: 14px;
        display: none;
    }
}
@media (max-height:768px) and (min-width: 1200px) {
    .boxContainer.notAlone{
        height: 267px;
    }
}