@import url('https://fonts.googleapis.com/css?family=Poppins:900i');

.nameContainer {
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
    width: 50%;
    margin-right: 20px;
    padding-right: 50px;
}

.inputName {
    appearance: none;
    font-family: 'Raleway', sans-serif;
    width: 100%;
    border: 0;
    border-bottom: 3px solid;
    outline: 0;
    font-size: 1.3rem;
    color: black;
    background: transparent;
    transform: border-color 5s;
    border-bottom-color: var(--color);
}


.inputName::placeholder {
    color: transparent;
}

.inputName:placeholder-shown~.inputNameLabel {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
}

.inputNameLabel {
    position: absolute;
    top: 0;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: var(--color);
}

.inputName:focus {
    padding-bottom: 6px;
    border-width: 2px;
    border-image: linear-gradient(to right, #333, #a9a9a9);
    border-image-slice: 1;
}

.inputName:focus~.inputNameLabel {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.5s;
    font-size: 1rem;
    color: #333;

}

.inputName:required,
.inputName:invalid {
    box-shadow: none;
}

body {
   /* width: 100%;
    height: 80px;
    align-items: center;
    justify-content: center;
    display: flex;*/
    background-image: url('icons/wood-background.jpg');
    background-repeat: inherit;
    background-size: cover;
}

.container {
    width: 600px;
    background: #fff;
    border-radius: 10px;
    /*position: absolute;*/
    text-align: center;
    padding: 0 30px 30px;
    /*top: 35%;*/
    
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
}

#color-select-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}



form {
    display: flex;
    flex-direction: column;
    align-items: center;
}



button {
    width: 120px;
    height: 50px;
    font-size: 18px;
    background-color: white;
    border: 1px solid black;
    cursor: pointer;
}

.player-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

input {
    width: 200px;
    height: 30px;
    margin: 5px 0;
    font-size: 18px;
    border: 1px solid black;

}

.custom-select {
    margin-left: 15px;
}

select {
    margin-top: 18px;
    border-top: none;
    border-left: none;
    border-right: none;
    outline-color: transparent;
    background-color: white;
    border-bottom: 3px solid #9b9b9b;
    padding: 8px;
    width: 200px;
    height: 40px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #9b9b9b;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom-color: var(--color);

}



select option {
    background-color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    color: black;
    width: 200px;
    padding: 8px;
    border-radius: 0;


}

select:focus {
    appearance: none;
    outline: none;
}

select:focus .optionList {
    display: block;
    border-radius: 0;


}

option:focus {
    border-radius: 0;
    outline: none !important;
}

.player {
    width: 200px;
    height: 50px;
    margin: 5px;
    font-size: 18px;
    color: #FBFFFF;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    border: 1px solid black;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnDelete {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    width: 150px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: red;
    border: none;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
    background: #e62222;
    margin-right: 30px;
}

.btnDelete,
.btnDelete span {
    transition: 200ms;
}

.btnDelete .text {
    transform: translateX(35px);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.btnDelete .icon {
    position: absolute;
    border-left: 1px solid #c41b1b;
    transform: translateX(110px);
    height: 40px;
    width: 40px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnDelete svg {
    margin-right: 5px;
    width: 15px;
    fill: #eee;
}

.btnDelete:hover {
    background: #ff3636;
}

.btnDelete:hover .text {
    color: transparent;
}

.btnDelete:hover .icon {
    width: 150px;
    border-left: none;
    transform: translateX(0);
}

.btnDelete:focus {
    outline: none;
}

.btnSave {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    width: 150px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: rgb(23, 151, 3);
    border: none;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
    background: #01b401;
    margin-right: 10px;
}

.btnSave,
.btnSave span {
    transition: 200ms;
}

.btnSave .text {
    transform: translateX(35px);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.btnSave .icon {
    position: absolute;
    border-left: 1px solid #d6d2d2;
    transform: translateX(110px);
    height: 40px;
    width: 40px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnSave img {
    margin-right: 5px;
    width: 18px;
    fill: #eee;
}

.btnSave:hover {
    background: #2fbb00;
}

.btnSave:hover .text {
    color: transparent;
}

.btnSave:hover .icon {
    width: 150px;
    border-left: none;
    transform: translateX(0);
}

.btnSave:focus {
    outline: none;
}

h1 {
    text-shadow: #333;
    font-style: italic;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    margin-top: 25px;
}



.btnStart {
    margin: 15px;
    font-family: 'Poppins', sans-serif;
    width: 170px;
    font-weight: 589;
    font-size: 15px;
    color: #0066cc;
    background-color: #fff;
    padding: 10px 10px;
    border: solid #408fde 2px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    border-radius: 0px;
    transition: 1990ms;
    transform: translateY(0);
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
}

.btnStart img {
    margin-left: 15px;
}

.btnStartEnabled {
    transition: 1990ms;
    padding: 10px 31px;
    transform: translateY(-9px);
    background-color: #408fde;
    color: #fff;
    border: solid 2px #0066cc;
}

.imgNailOne {
    /*position: absolute;*/
    left: 10px;
    top: 2px;

}

.imgNailTwo {
    /*position: absolute;*/
    right: 10px;
    top: 2px;

}

.logo {
    /*position: absolute;
    left: 15%;*/
    margin-top: -50px;
    filter: drop-shadow(2px 15px 15px #030303);

}

/* Media Queries */

/*Medium Devices bis zu XXL-Devices */

@media screen and (max-width: 1400px) and (min-width: 768px) {
    div.spielerauswahl {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.70);
    }
}

