::-webkit-scrollbar {
    height: 0 !important;
    width: 0 !important;
}
*{
    font-weight: bold;
}
.contanir {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contanir div {
    margin: 0 5px;
}

.left {
    width: 50%;
    height: 90vh;
    overflow: auto;
}

.left .code {
    width: 94%;
    height: 27%;
    padding: 10px;
    margin-bottom: 10px;
}

.left div .textarea {
    width: 100%;
    height: 94%;
    outline: none;
    border: none;
    color: white;
    margin: 0;
    padding: 5px 10px;
    font-size: 13px;
}

.left div label,
.right label {
    display: inline-block;
    color: white;
    font-size: 10px;
    font-weight: 700;
    background-color: #161414;
    width: 100%;
    padding: 5px 10px;
}

.right label {
    margin-top: 10px;
    padding: 11px;
    width: 100%;
}

.right .fa-play {
    font-size: 12px;
}

.left div label .fa-html5 {
    font-size: 12px;
    color: orange;
    position: relative;
}


.left div label .fa-css3-alt {
    font-size: 12px;
    color: rgb(0, 217, 255);
    position: relative;
}


.left div label .fa-js {
    font-size: 12px;
    color: #EBD91C;
    position: relative;
}
.right label .fa-play {
    font-size: 12px;
    color: #27b827;
    position: relative;
}


.left div label .fa-html5::after,
.left div label .fa-css3-alt::after,
.left div label .fa-js::after {
    content: "";
    width: 30%;
    height: 95%;
    position: absolute;
    left: 3px;
    background-color: rgba(0, 0, 0, 0.205);
    border-bottom-left-radius: 3px;
}

.left div label .fa-js::after {
    border-bottom-left-radius: 0px;
    left: 2px;
    width: 40%;
}

.left div label .fa-js::before {
    background: linear-gradient(transparent 0%, white 40% 90%, transparent 90%);
}

.right {
    width: 50%;
    height: 90vh;
    overflow: hidden;

}

.right iframe {
    width: 100%;
    height: 90%;
    border: none;
    background-color: rgba(206, 206, 206, 0.877);
}