#newPage {
    position: relative;
    display: flex;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    background: var(--ColorThemes0);
}

#newPage>h1 {
    font-size: 20px;
    color: rgb(255 255 255 / 70%);
    margin: 20px;
}


#newPage .edit{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 10px 0;
    justify-content: space-between;
}
#newPage .edit > input{
    display: none;
}
#newPage .edit > label{
    position: relative;
    display: flex;
    width: 100%;
    margin: 0 5px;
    height: 35px;
    border-radius: 15px;
    border: 2px solid var(--ColorThemes1);
    background-color: var(--ColorThemes0);
    color: rgb(255 255 255 / 70%);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease 0s;
    border-style: solid;
}
#newPage .edit > input:checked + label{
    border: 2px solid var(--ColorThemes1);
    background-color: var(--ColorThemes1);
}
@media (hover: hover) {
    #newPage .edit > label:hover{
        border-style: dashed;
    }
    #newPage .edit > input:checked + label:hover{
        border: 2px solid var(--ColorThemes0);
        background-color: var(--ColorThemes1);
        border-style: dashed;
    }
}


#newPage>div {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    max-width: 300px;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    border: 2px solid var(--ColorThemes1);
    border-radius: 15px;
    padding: 10px 20px;
    border-style: dotted;
}

#newPage>div>h2 {
    font-size: 18px;
    color: rgb(255 255 255 / 70%);
}

#newPage>div>h2>span {
    font-size: 16px;
    color: rgb(255 255 255 / 70%);
    text-transform: math-auto;
}


#newPage>.playersSettings {
    width: 100%;
}
#newPage>.playersSettings>.slider {
    width: 100%;
    margin: 10px 0;
}

#newPage>.playersSettings>.slider>input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: var(--ColorThemes1);
    cursor: pointer;
    width: 100%;
    height: 8px;
    border-radius: 4px;
}
#newPage>.playersSettings>.slider>input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--ColorThemes0);
    border: 2px solid var(--ColorThemes1);
    height: 20px;
    width: 20px;
    border-radius: 10px;
}

#newPage>.playersSettings>#team {
    width: 100%;
    margin-bottom: 10px;
}
#newPage>.playersSettings>#team>div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    background: rgb(255 255 255 / 70%);
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
}
#newPage>.playersSettings>#team>div>div {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: #e39f6a;
    border-radius: 5px;
    color: #802c16;
}
#newPage>.playersSettings>#team>div>input {
    background: 0;
    border: 1px solid #e39f6a;
    width: 195px;
    border-radius: 5px;
    color: #802c16;
    padding: 0 10px;
}



#newPage>.WordsSettings {
    width: 100%;
}
#newPage>.WordsSettings>.slider {
    width: 100%;
    margin: 10px 0;
}

#newPage>.WordsSettings>.slider>input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: var(--ColorThemes1);
    cursor: pointer;
    width: 100%;
    height: 8px;
    border-radius: 4px;
}
#newPage>.WordsSettings>.slider>input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--ColorThemes0);
    border: 2px solid var(--ColorThemes1);
    height: 20px;
    width: 20px;
    border-radius: 10px;
}




#newPage>.timerSettings {
    width: 100%;
}




#newPage > button {
    max-width: 300px;
    width: 100%;
    margin: 10px 0 30px 0;
    height: 50px;
    border-radius: 15px;
    border: 2px solid var(--ColorThemes1);
    background-color: var(--ColorThemes0);
    color: rgb(255 255 255 / 70%);
    z-index: 999;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s ease 0s;
    border-style: solid;
}
@media (hover: hover) {
    #newPage > button:hover{
        border-style: dashed;
    }
}