* {
    --webkit-box-sizing: border-box;
    --moz-box-sizing: border-box;
    box-sizing: border-box;
    margin :0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}
.txt {
    overflow: hidden;
}
.edit {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.edit > div {
    width: 100%;
    text-align: center;
}
.color .color-inp,
.weight select#weight-sel {
    width: 80%;
    width: 80%;
    border: 2px solid #ccc;
    border-radius: 4px;
}
.weight select#weight-sel {
    padding: 5px;
    background-color: rgb(213, 209, 209);
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
}
select#weight-sel option {
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
}
