#compareTitle {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    font-weight: 500;
}
#compareTitle p1 {
    width: 140px;
    text-align: center;
    font-weight: 500;
}

#mid-field{
    width: 45%;
    margin: 0 2.5%;
}

#compareLocalesMain {
    background-color: #222;
    display: flex;
    flex-direction: column;
}

#compInMain {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-right: 5%;
}

.compIn {
    display: flex;
    flex-direction: row;
    margin-bottom: 4px;
    justify-content: flex-end;
}

.compIn p {
    width: 50px;
    cursor: default;
    font-size: 13px;
    text-align: right;
    text-indent: 10px;
}

.compIn input {
    text-indent: 5px;
    width: 85%;
    border: 0;
    margin-left: 2px;
    margin-right: 5px;
    background-color: #444;
    color: white;
}

#compOutMain {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 5%
}

#compOutMain p{
    min-width: 100px;
}

.compOut {
    text-indent: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 4px;
}

.compOut p {
    cursor: default;
    font-size: 13px;
    text-align: right;
    width: 100px;
}

.compOut textarea {
    height: 20px;
    width: 85%;
    min-width: 85%;
    max-width: 85%;
    min-height: 20px;
    border: 0;
    margin-left: 2px;
    background-color: #444;
    color: white;
    text-indent: 5px;
}

.compOut textarea::-webkit-scrollbar {
    width: 10px;
}

.compOut textarea::-webkit-scrollbar-thumb {
    background-image:
        linear-gradient(to right,
        white 80%,
        #62baf1 80%);
}

.compOut textarea::-webkit-resizer {
    background-color: rgb(228, 228, 228);
}

.disp-none {
    display: none;
}