.content-store{
    display: flex;
    width: 100%;
    background: var(--ColorThemes0);
    flex-direction: column;
    margin-bottom: 10px;
}

.content-store > .header{
    display: flex;
    flex-direction: row;
    width: calc(100% - 20px);
    justify-content: space-between;
    align-items: center;
    border-radius: 25px;
    margin: 20px 10px;
}
.content-store > .header > h1{
    font-size: 20px;
    font-weight: 500;
    color: var(--ColorThemes2);
}
.content-store > .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-store > .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-store > .header > button > svg{
    width: 25px;
    height: 25px;
    border-radius: 15px;
    fill: var(--ColorThemes1);
}
.content-store > .header > button > img{
    width: 40px;
    height: 40px;
    border-radius: 15px;
}
.content-store > .header > button > a{
    width: 40px;
    height: 40px;
    border-radius: 15px;
    position: absolute;
}

.content-store > .cards-new{
    display: flex;
    flex-direction: row;
    width: calc(100% - 44px);
    min-width: 925px;
    border-radius: 25px;
    margin: 10px;
    overflow: hidden;
    background: var(--ColorThemes1);
    color: var(--ColorThemes2);
    align-items: center;
    justify-content: space-between;
    padding: 12px;
}
.content-store > .cards-new > div{
    display: flex;
    width: calc(100% - 40px);
}
.content-store > .cards-new > div > input{
    background-color: var(--ColorThemes0);
    border-radius: 15px;
    padding: 2px 8px;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: var(--ColorThemes2);
    text-align: left;
    margin-right: 10px;
    border: 2px solid var(--ColorThemes0);
}
.content-store > .cards-new > div > select{
    border-radius: 15px;
    padding: 6px 10px;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: center;
    width: 35px;
    margin: 0 10px 0px 0px;
    background: var(--PrimaryColor);
    color: var(--PrimaryColorText);
}
.content-store > .cards-new > button{
    width: 30px;
    height: 30px;
    border-radius: 25px;
    background-color: var(--ColorThemes2);
    color: var(--ColorThemes1);
    transition: .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}
.content-store > .cards-new > 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-store > .cards-new > button > svg{
    width: 20px;
    height: 20px;
    fill: var(--ColorThemes1);
}

.content-store > .filter-search{
    display: flex;
    flex-direction: row;
    width: calc(100% - 44px);
    min-width: 925px;
    border-radius: 25px;
    margin: 10px 10px 30px 10px;
    overflow: hidden;
    background: var(--ColorThemes1);
    color: var(--ColorThemes2);
    align-items: center;
    padding: 12px;
}
.content-store > .filter-search select {
    min-width: 120px;
    height: 35px;
    background-color: var(--ColorThemes0);
    color: var(--ColorThemes2);
    font-size: 14px;
    border: 0;
    cursor: pointer;
    border-radius: 15px;
    padding: 5px 8px;
    margin-right: 10px;
}
.content-store > .filter-search input {
    height: 25px;
    background-color: var(--ColorThemes0);
    color: var(--ColorThemes2);
    font-size: 14px;
    border: 0;
    cursor: pointer;
    border-radius: 15px;
    padding: 5px 8px;
}

.content-store > .cards{
    display: flex;
    flex-direction: column;
    width: calc(100% - 20px);
    min-width: 950px;
    border-radius: 25px;
    margin: 0 10px;
    overflow: hidden;
}
.content-store > .cards > div > .info{
    position: relative;
    display: flex;
    flex-direction: row;
    border: 2px solid var(--ColorThemes1);
    background: var(--ColorThemes1);
    color: var(--ColorThemes2);
    margin: 0;
    justify-content: space-between;
    transition: .3s ease;
    font-size: 13px;
    align-items: center;
    padding: 10px;
    z-index: 5;
}
.content-store > .cards > div > .info[data-state="even"]{
    border: 2px solid var(--ColorThemes3) !important;
    background: var(--ColorThemes3);
    color: var(--ColorThemes2);
}
.content-store > .cards > div > .info > div{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.content-store > .cards > div > .info > div > h3{
    margin: 0 10px;
    min-width: 25px;
}
.content-store > .cards > div > .info > div > img{
    background: var(--ColorThemes2);
    border-radius: 15px;
    width: 30px;
    display: flex;
    transition: .3s ease;
    padding: 3px;
    margin: 0 10px;
}
.content-store > .cards > div > .info > div > p{
    margin: 0 15px;
    font-size: 13px;
}
.content-store > .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-store > .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-store > .cards > div > .info > button > svg{
    width: 25px;
    height: 25px;
    fill: var(--ColorThemes1);
}

.content-store > .cards > div > .edit{
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--ColorThemes1);
    color: var(--ColorThemes2);
    border-radius: 0 0 25px 25px;
    transition: .3s ease;
    font-size: 13px;
    z-index: 4;
    overflow: hidden;
    align-items: flex-start;
}
.content-store > .cards > div > .edit[data-state="even"]{
    background: var(--ColorThemes3);
    color: var(--ColorThemes2);
}

.content-store > .cards > div > .edit > div{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0 10px 10px 11px;
    align-items: center;
    width: calc(100% - 20px - 34px);
}
.content-store > .cards > div > .edit > div > h3 {
    margin: 0 10px;
    min-width: 25px;
}
.content-store > .cards > div > .edit > div > input{
    background-color: var(--ColorThemes0);
    border-radius: 15px;
    padding: 6px 10px;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: var(--ColorThemes2);
    text-align: left;
    margin: 5px;
}
.content-store > .cards > div > .edit > div > select{
    border-radius: 15px;
    padding: 6px 10px;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: center;
    margin: 0 5px;
    background: var(--PrimaryColor);
    color: var(--PrimaryColorText);
}
.store-name {
    width: 30%;
    min-width: 140px;
}
.store-groups {
    width: 20%;
    min-width: 120px;
}
.store-money {
    width: 10%;
    min-width: 40px;
}
.store-currency {
    width: 10%;
    min-width: 65px;
}
.store-quantity {
    width: 10%;
    min-width: 65px;
}
.store-least {
    width: 10%;
    min-width: 65px;
}
.store-shop {
    width: 10%;
    min-width: 120px;
}


#cards-store > .storeNull{
    width: 100%;
    height: calc(100vh - 155px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#cards-store > .storeNull svg{
    width: 150px;
    height: 150px;
    fill: var(--ColorThemes2);
}
#cards-store > .storeNull span{
    color: var(--ColorThemes2);
    font-size: 18px;
    font-weight: 400;
}

.content-store > #block-price > div {
    width: calc(100% - 40px);
    min-width: 925px;
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: var(--ColorThemes1);
    color: var(--ColorThemes2);
    margin: 10px;
    border-radius: 25px;
    min-height: 70px;
    justify-content: flex-end;
    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;
    padding: 10px 20px 10px 0;
    font-size: 18px;
    align-items: center;
}