* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.fa-curly-brace::after {
    all: unset;
    font-style: normal;
    content: '{ }';
}


.editor {
    width: 49vw;
    height: 90vh;
    display: none;
    font-size: 14px;
    line-height: 1.5em;
    /* overflow: scroll; */
}

#html_editor {
    display: block;
}

#output {
    width: 49vw;
    height: 90vh;
    background-color: #f7f5f5;
    border-radius: 3px;
    /* overflow: scroll; */
}

#output_btn {
    display: none;
}

.row {
    display: flex;
}

.layout {
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    flex-wrap: wrap;
    gap: 5px;
}

#btngrup {
    display: flex;
    justify-content: space-between;
    background-color: rgb(32, 32, 36);
    align-items: center;
}

.col_5 {
    width: 50%;
    display: flex;
}

#btngrup button {
    margin: 8px 0.3em;
    padding: 8px 1.2em;
    border: none;
    font-weight: bold;
    font-size: 16px;
    background-color: transparent;
    color: rgb(197, 195, 212);
    cursor: pointer;
}

#secondgrp {
    display: flex;
    justify-content: end;
}

#secondgrp button {
    position: relative;
    padding: 5px;
    margin: 0x;
}

.fa-left-screen {
    padding: 0 8px;
    width: 16px;
    border: 1px solid rgb(88, 68, 217);
    position: relative;
    border-radius: 2px;
    margin-right: 5px;
}

.fa-left-screen::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgb(88, 68, 217);
}

.fa-left-bottom {
    padding: 0 8px;
    width: 16px;
    border: 1px solid rgb(88, 68, 217);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    margin-right: 5px;
}

.fa-left-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background-color: rgb(88, 68, 217);
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgb(35, 35, 190);
    border-radius: 10px;
}

#sidebar {
    position: fixed;
    background-color: #171718;
    top: 3em;
    right: 0;
    border-radius: 3px;
    box-shadow: 0 0 5px black;
    width: 0px;
    height: 0px;
    overflow: hidden;
    z-index: 99999999;
    transition: 0.5s;
}

#sidebar.display {
    transition: 0.5s;
    width: fit-content;
    height: auto;
}

hr {
    /* height: 10px; */
    border: none;
    border-top: 1px solid white;
}

#sidebar button {
    background-color: transparent;
    color: white;
    border: none;
    display: block;
    padding: 5px 1.5em;
    margin: 8px;
    cursor: pointer;
    transition: 0.3s;
}

#sidebar button i {
    color: rgb(88, 68, 217);
}

#sidebar button:hover {
    color: rgb(88, 68, 217);
}

.fa-js-fileic::before {
    content: 'js';
    font-style: normal;
    font-size: 16px;
}

#autoruncheck {
    width: 1.2em;
    aspect-ratio: 1/1;
    cursor: pointer;
}

input:checked {
    background-color: rgb(88, 68, 217) !important;
}

#checkedbtn {
    align-items: center;
    vertical-align: middle;
}

@media (max-width: 765px) {
    .editor {
        width: 100vw;
        height: 94vh;
    }

    #output {
        display: none;
    }

    #btngrup div:first-child button {
        font-size: 14px;
        margin: 5px;
        padding: 5px;
    }

    #output_btn {
        display: inline-block;
    }

}