html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #026FCE;
    background-image: linear-gradient(45deg, #0B4182 1%, #1e88e5 64%, #40BAF5 97%);
}

#top {
    height: 75px;
}

#mid {
    font-size: 0;
}

#bottom {
    height: 100px;
}

.top-logo{
    width: 150px;
    height: 50px;
    background-image: url(../img/pdfcopy-logo-white.png);
    cursor: pointer;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}

#left-container {
    display: inline-block;
    height: 100%;
    width: 49.999%;
}

#right-container {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 49.999%;
}

#input-container {
    margin-right: 1px;
}

#output-container {
    margin-left: 1px;
}

#text-input {}

#text-output {
    background: #f5f5f5;
    cursor: default;
}

.tx-area-wrap {
    width: 100%;
    height: calc(100vh - 225px);
    position: relative;
}

.tx-area {
    width: inherit;
    height: inherit;
    box-sizing: border-box;
    margin: 0;
    padding-left: 6px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 50px;
    border: 0;
    border-radius: 0;
    resize: none;
    background: #fff;
}

textarea:focus {
    outline: none;
}

.toolbar {
    position: relative;
    height: 50px;
}