.content-workers{
    display: flex;
    width: 100%;
    background: var(--ColorThemes0);
    flex-direction: column;
    margin-bottom: 10px;
}

.content-workers > .header{
    display: flex;
    flex-direction: row;
    width: calc(100% - 20px);
    justify-content: space-between;
    align-items: center;
    border-radius: 25px;
    margin: 20px 10px;
}
.content-workers > .header > h1{
    font-size: 20px;
    font-weight: 500;
    color: var(--ColorThemes2);
}
.content-workers > .header > button{
    width: 40px;
    height: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0,0,0,.04), 0px 0px 2px rgba(0,0,0,.06), 0px 0px 1px rgba(0,0,0,.04);
    transition: .3s ease;
    border: 2px solid var(--ColorThemes2);
    justify-content: center;
    background: var(--ColorThemes2);
}
.content-workers > .header > button:hover{
    cursor: pointer;
    transition: .3s ease;
    transform: scale(1.02) translateY(0);
    box-shadow: 0px 10px 20px rgba(0,0,0,.04),0px 2px 6px rgba(0,0,0,.04),0px 0px 1px rgba(0,0,0,.04);
}
.content-workers > .header > button > svg{
    width: 25px;
    height: 25px;
    border-radius: 15px;
    fill: var(--ColorThemes1);
}
.content-workers > .header > button > img{
    width: 40px;
    height: 40px;
    border-radius: 15px;
}
.content-workers > .header > button > a{
    width: 40px;
    height: 40px;
    border-radius: 15px;
    position: absolute;
}


.content-workers > .cards{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.content-workers > .cards > div > .info{
    position: relative;
    display: flex;
    flex-direction: row;
    border: 2px solid var(--ColorThemes1);
    background: var(--ColorThemes1);
    color: var(--ColorThemes2);
    margin: 10px;
    border-radius: 25px;
    justify-content: space-between;
    box-shadow: 0px 4px 8px rgba(0,0,0,.04), 0px 0px 2px rgba(0,0,0,.06), 0px 0px 1px rgba(0,0,0,.04);
    transition: .3s ease;
    font-size: 13px;
    align-items: center;
    padding: 10px;
    z-index: 5;
}
.content-workers > .cards > div > .info > div{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-workers > .cards > div > .info > div > h3{
    margin: 0 10px;
}
.content-workers > .cards > div > .info > div > img{
    background: var(--ColorThemes2);
    border-radius: 15px;
    width: 30px;
    display: flex;
    transition: .3s ease;
    padding: 3px;
    margin: 0 10px;
}
.content-workers > .cards > div > .info > div > p{
    margin: 0 10px;
}
.content-workers > .cards > div > .info > button{
    background: var(--ColorThemes2);
    border-radius: 15px;
    display: flex;
    transition: .3s ease;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
}
.content-workers > .cards > div > .info > button:hover{
    cursor: pointer;
    transition: .3s ease;
    transform: scale(1.002) translateY(0);
    box-shadow: 0px 10px 20px rgba(0,0,0,.04),0px 2px 6px rgba(0,0,0,.04),0px 0px 1px rgba(0,0,0,.04);
}
.content-workers > .cards > div > .info > button > svg{
    width: 25px;
    height: 25px;
    fill: var(--ColorThemes1);
}

.content-workers > .cards > div > .edit{
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--ColorThemes2);
    background: var(--ColorThemes2);
    color: var(--ColorThemes1);
    margin: -40px 10px 10px 10px;
    border-radius: 0 0 25px 25px;
    box-shadow: 0px 4px 8px rgba(0,0,0,.04), 0px 0px 2px rgba(0,0,0,.06), 0px 0px 1px rgba(0,0,0,.04);
    transition: .3s ease;
    font-size: 13px;
    padding: 25px 0 0 0;
    z-index: 4;
    overflow: hidden;
    align-items: center;
}
.content-workers > .cards > div > .edit > div{
    width: 100%;
}
.content-workers > .cards > div > .edit > div > div{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 10px;
    align-items: center;
    width: calc(100% - 20px);
}
.content-workers > .cards > div > .edit > div > div > select{
    background: var(--ColorThemes0);
    border-radius: 15px;
    padding: 6px 10px;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: var(--ColorThemes2);
    text-align: center;
    width: 35px;
    margin-left: 10px;
}
.content-workers > .cards > div > .edit > div > div > input{
    background-color: var(--ColorThemes0);
    border-radius: 15px;
    padding: 6px 10px;
    width: 80%;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: var(--ColorThemes2);
    text-align: left;
}
.content-workers > .cards > div > .edit > div > div > input[type="number"] {
    width: 110px;
    min-width: 45px;
    margin-left: 10px;
}

.content-workers > .cards > div > .edit > button {
    width: 30px;
    height: 30px;
    border-radius: 25px;
    background-color: var(--ColorThemes0);
    color: var(--ColorThemes2);
    transition: .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 20px;
}
.content-workers > .cards > div > .edit > button > svg{
    width: 20px;
    height: 20px;
    fill: var(--ColorThemes2);
}


#cards-workers > .workersNull{
    width: 100%;
    height: calc(100vh - 155px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#cards-workers > .workersNull svg{
    width: 150px;
    height: 150px;
    fill: var(--ColorThemes2);
}
#cards-workers > .workersNull span{
    color: var(--ColorThemes2);
    font-size: 18px;
    font-weight: 400;
}
