:root {
    --gray: rgb(46, 46, 46)
}

body {
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.2vw;
}

.unite {
    color: rgb(139, 139, 139);
}

.mesuresHauteur {
    writing-mode: tb;
    height: 100%;
    margin: 1%;
    text-align: center;
}

.mesuresLargeur {
    margin: 1%;
}

#formulaire {
    width: 28vw;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: var(--gray);
    padding-bottom: 2vw;
    border-radius: .5vw;
    border: .3vw solid black;
    color: white;
    font-weight: lighter;
    position: fixed;
}

input {
    background-color: rgb(139, 138, 138);
    color: white;
    border: none;
    font-weight: bold;
    margin-top: .2vw;
    padding: .3vw;
    font-size: .9vw;
    border-radius: .3vw;
    outline: none;
    transition: outline .3s;
}

input[type=number]:focus,
input[type=number]:hover {
    outline: .2vw solid black;
}

#submit {
    margin-top: 1vw;
    width: 90%;
    height: 2vw;
    background-color: rgb(84, 84, 84) !important;
    transition: .2s;
}

#submit:hover {
    background-color: rgb(139, 138, 138) !important;
    cursor: pointer;
}

#arrow {
    font-size: 5vw;
    margin: 0px;
    margin: 1vw;
    font-weight: lighter;
}

.formatDecoupe {
    display: flex;
    flex-direction: column;
    font-size: .9vw;
    font-weight: lighter;
}

form {
    padding: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#iso-format,
#cut-format {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    margin-bottom: 1vw;
}

#schemas {
    position: fixed;
    right: 1vw;
    transform: translateY(-50%);
    top: 50vh;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: scroll;
    z-index: -1;
}

.count {
    margin-bottom: 3vw;
    font: .2vw;
}

.feuille-schema {
    width: 420px;
    height: 297px;
    border: 1px solid black;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

.schema {
    width: fit-content;
    height: fit-content;
    display: flex;
}

.left-side-schema {
    -webkit-writing-mode: vertical-lr;
    transform: rotate(180deg);
    text-align: center;
}

.right-side-schema {
    text-align: center;
}

.default-value,
.default-iso-value {
    font-size: 1vw;
    padding: .2vw;
    border-radius: .4vw;
    background-color: rgb(84, 84, 84);
    color: white;
    transition: .2s;
}

.default-value:hover,
.default-iso-value:hover {
    background-color: rgb(139, 138, 138);
    color: white;
    cursor: pointer;

}